From c0cf3b3656a11ab7e3e9dffce3868aa39ccff24c Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:35:24 +0000 Subject: [PATCH 1/6] lein-release plugin: preparing 0.1.1 release --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 73fb525..84962fd 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject csv2edn "0.1.1-SNAPSHOT" +(defproject csv2edn "0.1.1" :description "Simple command line utility to convert CSV files to EDN" :url "http://example.com/FIXME" :license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0" From 7c1becfe54ce9a80636c38877df87f5ef6cd7f89 Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:41:24 +0000 Subject: [PATCH 2/6] Trying to fix the deploy issue... --- project.clj | 1 + 1 file changed, 1 insertion(+) diff --git a/project.clj b/project.clj index 84962fd..b1f5b5d 100644 --- a/project.clj +++ b/project.clj @@ -21,5 +21,6 @@ ["vcs" "commit"] ["clean"] ["uberjar"] + ["deploy" "clojars"] ["change" "version" "leiningen.release/bump-version"] ["vcs" "commit"]]) From 71fb701d1cab3b70a77b54bd77330ab5cbeebce7 Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:43:54 +0000 Subject: [PATCH 3/6] Still trying to fix the deploy issue... --- project.clj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project.clj b/project.clj index b1f5b5d..40612f0 100644 --- a/project.clj +++ b/project.clj @@ -1,6 +1,6 @@ -(defproject csv2edn "0.1.1" - :description "Simple command line utility to convert CSV files to EDN" - :url "http://example.com/FIXME" +(defproject csv2edn "0.1.2-SNAPSHOT" + :description "Simple command line utility to convert CSV files to EDN." + :url "https://github.com/simon-brooke/csv2edn" :license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html"} :dependencies [[org.clojure/clojure "1.8.0"] From dad796eb89466581fa1df6367f6339a4c5188bd5 Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:44:14 +0000 Subject: [PATCH 4/6] lein-release plugin: preparing 0.1.2 release --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 40612f0..ab5d1a5 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject csv2edn "0.1.2-SNAPSHOT" +(defproject csv2edn "0.1.2" :description "Simple command line utility to convert CSV files to EDN." :url "https://github.com/simon-brooke/csv2edn" :license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0" From a5b18dd6df20561a6b61750bc7dab026564e10d8 Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:48:28 +0000 Subject: [PATCH 5/6] And again... --- project.clj | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index ab5d1a5..4399724 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject csv2edn "0.1.2" +(defproject csv2edn "0.1.3-SNAPSHOT" :description "Simple command line utility to convert CSV files to EDN." :url "https://github.com/simon-brooke/csv2edn" :license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0" @@ -13,13 +13,17 @@ [lein-release "1.0.5"]] :profiles {:uberjar {:aot :all}} + :deploy-repositories [["releases" :clojars] + ["snapshots" :clojars]] + ;; `lein release` doesn't play nice with `git flow release`. Run `lein release` in the ;; `develop` branch, then reset the `master` branch to the release tag. :release-tasks [["vcs" "assert-committed"] + ["clean"] + ["codox"] ["change" "version" "leiningen.release/bump-version" "release"] ["vcs" "commit"] - ["clean"] ["uberjar"] ["deploy" "clojars"] ["change" "version" "leiningen.release/bump-version"] From 2dccf4c5d42a3756506d6b4a3af8b67123c3422f Mon Sep 17 00:00:00 2001 From: Simon Brooke <simon@journeyman.cc> Date: Mon, 27 Jan 2020 11:48:40 +0000 Subject: [PATCH 6/6] lein-release plugin: preparing 0.1.3 release --- project.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project.clj b/project.clj index 4399724..dbeb64e 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject csv2edn "0.1.3-SNAPSHOT" +(defproject csv2edn "0.1.3" :description "Simple command line utility to convert CSV files to EDN." :url "https://github.com/simon-brooke/csv2edn" :license {:name "GPL-2.0-or-later WITH Classpath-exception-2.0"