From b6582d975f18a12e52e5a19afba6af9cff05c52c Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 20 Sep 2018 13:32:33 +0100 Subject: [PATCH 1/5] lein-release plugin: bumped version from 0.1.6 to 0.1.7-SNAPSHOT for next development cycle --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 6cb47f9..c0d3d45 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject lein-adl "0.1.6" +(defproject lein-adl "0.1.7-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 From 68103cff2084039ac73cdb2528d9dc46bad11d79 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Sat, 22 Sep 2018 08:40:07 +0100 Subject: [PATCH 2/5] Removed commented-out line --- project.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/project.clj b/project.clj index c0d3d45..44aac3c 100644 --- a/project.clj +++ b/project.clj @@ -21,7 +21,6 @@ ["codox"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] - ;; ["vcs" "tag"] -- not working, problems with secret key ["uberjar"] ["install"] ["deploy" "clojars"] From 779a9cdbf11302f814651b71d7d470d685d2eb46 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 2 May 2019 11:20:33 +0100 Subject: [PATCH 3/5] Updated ADL dependency. --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 44aac3c..0a338dc 100644 --- a/project.clj +++ b/project.clj @@ -4,7 +4,7 @@ :license {:name "Eclipse Public License" ;; for compatibility with leiningen :url "http://www.eclipse.org/legal/epl-v10.html"} :dependencies [[adl-support "0.1.4"] - [adl "1.4.5"]] + [adl "1.4.6-SNAPSHOT"]] :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]] From f706ba9fa979ded95a72d17b031df3782ed5cbcf Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 2 May 2019 16:12:57 +0100 Subject: [PATCH 4/5] Standardising documentation generation --- project.clj | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/project.clj b/project.clj index 0a338dc..c070576 100644 --- a/project.clj +++ b/project.clj @@ -9,6 +9,12 @@ :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]] + :codox {:metadata {:doc "**TODO**: write docs" + :doc/format :markdown} + :languages [:clojure :clojurescript] + :source-uri "https://github.com/simon-brooke/lein-adl/blob/master/{filepath}#L{line}" + :output-path "docs"} + :deploy-repositories [["releases" :clojars] ["snapshots" :clojars]] From 397872bf396e49f286a668a99e51e2cb93b7c567 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Thu, 2 May 2019 16:16:32 +0100 Subject: [PATCH 5/5] lein-release plugin: preparing 0.1.7 release --- project.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project.clj b/project.clj index c070576..0633951 100644 --- a/project.clj +++ b/project.clj @@ -1,10 +1,10 @@ -(defproject lein-adl "0.1.7-SNAPSHOT" +(defproject lein-adl "0.1.7" :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.4"] - [adl "1.4.6-SNAPSHOT"]] + :dependencies [[adl-support "0.1.6"] + [adl "1.4.6"]] :plugins [[lein-codox "0.10.3"] [lein-release "1.0.5"]]