From 7b3454664582953f2c374975dfee1d4af69e2766 Mon Sep 17 00:00:00 2001 From: Richard Hu Date: Wed, 24 Jul 2019 14:41:35 -0400 Subject: [PATCH] fixed lein plugins --- CHANGELOG.md | 4 ++++ Jenkinsfile | 2 +- project.clj | 5 +++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 810773d..c0cb8e0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [0.7.5] - 2019-07-24 +### Changed +- DM 206: Added lein-set-version plugin + ## [0.7.4] - 2019-07-23 ### Changed - Migrate to CHANGELOG.md diff --git a/Jenkinsfile b/Jenkinsfile index e8b123d..5068e4a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -93,7 +93,7 @@ timestamps { sh "./apache-maven-3.5.0/bin/mvn -q --settings ${MAVEN_SETTINGS} deploy:deploy-file -Durl=${nexus_url} -DrepositoryId=dm-releases -DpomFile=pom.xml -Dfile=target/proletariat-${env.VERSION}.jar -Dfiles=target/proletariat-${env.VERSION}-standalone.jar -Dclassifiers=standalone -Dtypes=jar" - def releaseNotes = utils.runSh("awk '/## \\[${env.RELEASE_VERSION}\\]/{flag=1;next}/## \\[/{flag=0}flag' CHANGELOG.md") + def releaseNotes = utils.runSh("awk '/## \\[${env.VERSION}\\]/{flag=1;next}/## \\[/{flag=0}flag' CHANGELOG.md") utils.createGithubRelease("proletariat", env.GIT_COMMIT, env.VERSION, releaseNotes) } milestone() diff --git a/project.clj b/project.clj index 0afb7a6..5cfee57 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.liaison/proletariat "0.7.4" +(defproject com.liaison/proletariat "0.7.5" :description "Library of the Commons. A hard-working library of common utilities. GitHub: https://github.com/LiaisonTechnologies/proletariat" :url "https://github.com/LiaisonTechnologies/proletariat" @@ -20,7 +20,8 @@ [org.clojure/test.check "0.9.0"] [org.clojure/tools.logging "0.4.0"]] - :plugins [[lein-codox "0.10.3"]] + :plugins [[lein-set-version "0.4.1"] + [lein-codox "0.10.3"]] :codox {:output-path "docs" :metadata {:doc/format :markdown}