From 1e2e9ea49b0d88ddebc80ea0d18059dfe369e408 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 23 Sep 2017 15:18:06 +0100 Subject: [PATCH 1/5] Enabled committing during lein release with an unsigned tag. --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index efd7bc2..2ba7ad2 100644 --- a/project.clj +++ b/project.clj @@ -59,7 +59,7 @@ :release-tasks [["vcs" "assert-committed"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] - ;; ["vcs" "tag"] -- not working, problems with secret key + ["vcs" "tag" "v." "--no-sign"] ["clean"] ["bower" "install"] ["ring" "uberjar"] From cd25d8bd761adac650035a801f3d9f9a351c40f1 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 23 Sep 2017 15:18:35 +0100 Subject: [PATCH 2/5] Version 1.0.1 --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 2ba7ad2..51fb2f3 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject smeagol "1.0.1-SNAPSHOT" +(defproject smeagol "1.0.1" :description "A simple Git-backed Wiki inspired by Gollum" :url "https://github.com/simon-brooke/smeagol" :license {:name "GNU General Public License,version 2.0 or (at your option) any later version" From 4f8c4b8925d3596ff42c2906958cbf21efbd1992 Mon Sep 17 00:00:00 2001 From: jem Date: Fri, 18 Jan 2019 15:06:33 +0100 Subject: [PATCH 3/5] fixed test - Now we are getting a 200 response again. --- resources/config.edn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/config.edn b/resources/config.edn index 80d0738..d5f7017 100644 --- a/resources/config.edn +++ b/resources/config.edn @@ -28,7 +28,7 @@ ;; ; ; ; ; ; ; ; ; ; { :content-dir "resources/public/content" - :start-page "README" + :start-page "Introduction" ;; where content is served from. :default-locale "en-GB" ;; default language used for messages :formatters {"vega" smeagol.formatting/process-vega From 5b785389b404ac8169191dfec3096afa54473c9b Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 19 Jan 2019 17:20:50 +0000 Subject: [PATCH 4/5] Version 1.0.2 --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 49977fc..91a13a1 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject smeagol "1.0.2-SNAPSHOT" +(defproject smeagol "1.0.2" :description "A simple Git-backed Wiki inspired by Gollum" :url "https://github.com/simon-brooke/smeagol" :license {:name "GNU General Public License,version 2.0 or (at your option) any later version" From 8374432a168f01f8cba581d2dbfdcbd4f4d15730 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 19 Jan 2019 17:46:33 +0000 Subject: [PATCH 5/5] Added change log --- resources/public/content/Change log.md | 7 +++++++ resources/public/content/_side-bar.md | 1 + 2 files changed, 8 insertions(+) create mode 100644 resources/public/content/Change log.md diff --git a/resources/public/content/Change log.md b/resources/public/content/Change log.md new file mode 100644 index 0000000..c948455 --- /dev/null +++ b/resources/public/content/Change log.md @@ -0,0 +1,7 @@ +# 1.0.2 +Two fixes contributed by a user: + +* [Configurable start page](https://github.com/journeyman-cc/smeagol/commit/b1eeecde1d0555e9b708807c63e28fac21de58c4) +* [Fixed uploads](https://github.com/journeyman-cc/smeagol/commit/1136e792d4810fd9af8b443fdea6d6be4aeda79e) + +Many thanks to [M Jerger](https://github.com/jerger) for these. \ No newline at end of file diff --git a/resources/public/content/_side-bar.md b/resources/public/content/_side-bar.md index a675893..ad01779 100644 --- a/resources/public/content/_side-bar.md +++ b/resources/public/content/_side-bar.md @@ -1,4 +1,5 @@ * [[Introduction]] +* [[Change log]] * [[User Documentation]] * [[Deploying Smeagol]] * [[Developing Smeagol]]