From 92247ea826d1ee4a0b39ecef5b521debac13b7d3 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 21 Jul 2018 11:10:46 +0100 Subject: [PATCH 1/6] First release. --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 626d4cf..0789983 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lein-adl "0.1.0-SNAPSHOT" +(defproject lein-adl "0.1.1" :description "Integrate Application Description Language into lein workflow" :url "https://github.com/simon-brooke/lein-adl" :license {:name "Eclipse Public License" ;; for compatibility with leiningen From f10fb225206311e45fc3b89c41b92f802f78eacb Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 21 Jul 2018 11:10:46 +0100 Subject: [PATCH 2/6] First release. --- README.md | 2 +- project.clj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e2c7e00..5095fa0 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Language. ## Usage -Put `[lein-adl "0.1.0-SNAPSHOT"]` into the `:plugins` vector of your +Put `[lein-adl "0.1.1"]` into the `:plugins` vector of your project.clj. Example usage: diff --git a/project.clj b/project.clj index 626d4cf..0789983 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lein-adl "0.1.0-SNAPSHOT" +(defproject lein-adl "0.1.1" :description "Integrate Application Description Language into lein workflow" :url "https://github.com/simon-brooke/lein-adl" :license {:name "Eclipse Public License" ;; for compatibility with leiningen From f66527c1dd71b28fa3fe3b28e9a55bc84a8d09d9 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 21 Jul 2018 18:54:06 +0100 Subject: [PATCH 3/6] Upversion to 0.1.2, using adl 1.4.3 --- project.clj | 31 +++++++++++++++++-------------- 1 file changed, 17 insertions(+), 14 deletions(-) diff --git a/project.clj b/project.clj index 0789983..a4b833e 100644 --- a/project.clj +++ b/project.clj @@ -1,10 +1,10 @@ -(defproject lein-adl "0.1.1" +(defproject lein-adl "0.1.2" :description "Integrate Application Description Language into lein workflow" :url "https://github.com/simon-brooke/lein-adl" :license {:name "Eclipse Public License" ;; for compatibility with leiningen :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[adl-support "0.1.3"] - [adl "1.4.2"]] + [adl "1.4.3"]] :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]] @@ -13,17 +13,20 @@ ;; `lein release`, first merge `develop` into `master`, and then, in branch ;; `master`, run `lein release` - :release-tasks [["vcs" "assert-committed"] - ["clean"] - ["test"] - ["codox"] - ["change" "version" "leiningen.release/bump-version" "release"] - ["vcs" "commit"] - ;; ["vcs" "tag"] -- not working, problems with secret key - ["uberjar"] - ["install"] - ["deploy" "clojars"] - ["change" "version" "leiningen.release/bump-version"] - ["vcs" "commit"]] + ;; in fact, `lein release` is pretty comprehensively broken, which is a + ;; shame because it's a good idea. + + ;; :release-tasks [["vcs" "assert-committed"] + ;; ["clean"] + ;; ["test"] + ;; ["codox"] + ;; ["change" "version" "leiningen.release/bump-version" "release"] + ;; ["vcs" "commit"] + ;; ;; ["vcs" "tag"] -- not working, problems with secret key + ;; ["uberjar"] + ;; ["install"] + ;; ["deploy" "clojars"] + ;; ["change" "version" "leiningen.release/bump-version"] + ;; ["vcs" "commit"]] :eval-in-leiningen true) From 8faefe71626362973dde16e84673d2c68127483b Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 21 Jul 2018 19:01:02 +0100 Subject: [PATCH 4/6] Added clojars badge. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 5095fa0..a9b2ff8 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ A Leiningen plugin to generate Clojure source code from Application Description Language. +[![Clojars Project](https://img.shields.io/clojars/v/lein-adl.svg)](https://clojars.org/lein-adl) + ## Usage Put `[lein-adl "0.1.1"]` into the `:plugins` vector of your From 90359930b1642b36a605b54d2da625c3542d7ffa Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 21 Jul 2018 19:01:02 +0100 Subject: [PATCH 5/6] Added clojars badge. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5095fa0..c93c594 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,11 @@ A Leiningen plugin to generate Clojure source code from Application Description Language. +[![Clojars Project](https://img.shields.io/clojars/v/lein-adl.svg)](https://clojars.org/lein-adl) + ## Usage -Put `[lein-adl "0.1.1"]` into the `:plugins` vector of your +Put `[lein-adl "0.1.2"]` into the `:plugins` vector of your project.clj. Example usage: From 8502384cbe140ecefeff68bfb3a31fad89c2f834 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 20 Sep 2018 10:21:40 +0100 Subject: [PATCH 6/6] Upversioned to 0.1.3-SNAPSHOT, prior to trying to get release working --- project.clj | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/project.clj b/project.clj index a4b833e..0924cd4 100644 --- a/project.clj +++ b/project.clj @@ -1,11 +1,11 @@ -(defproject lein-adl "0.1.2" +(defproject lein-adl "0.1.3-SNAPSHOT" :description "Integrate Application Description Language into lein workflow" :url "https://github.com/simon-brooke/lein-adl" :license {:name "Eclipse Public License" ;; for compatibility with leiningen :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[adl-support "0.1.3"] [adl "1.4.3"]] - + :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]] @@ -16,17 +16,17 @@ ;; in fact, `lein release` is pretty comprehensively broken, which is a ;; shame because it's a good idea. - ;; :release-tasks [["vcs" "assert-committed"] - ;; ["clean"] - ;; ["test"] - ;; ["codox"] - ;; ["change" "version" "leiningen.release/bump-version" "release"] - ;; ["vcs" "commit"] - ;; ;; ["vcs" "tag"] -- not working, problems with secret key - ;; ["uberjar"] - ;; ["install"] - ;; ["deploy" "clojars"] - ;; ["change" "version" "leiningen.release/bump-version"] - ;; ["vcs" "commit"]] + :release-tasks [["vcs" "assert-committed"] + ["clean"] + ["test"] + ["codox"] + ["change" "version" "leiningen.release/bump-version" "release"] + ["vcs" "commit"] + ;; ["vcs" "tag"] -- not working, problems with secret key + ["uberjar"] + ["install"] + ["deploy" "clojars"] + ["change" "version" "leiningen.release/bump-version"] + ["vcs" "commit"]] :eval-in-leiningen true)