Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
fixed lein plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
richiehu17 committed Jul 24, 2019
1 parent 9025f0b commit 7b34546
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
5 changes: 3 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -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"

Expand All @@ -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}
Expand Down

0 comments on commit 7b34546

Please sign in to comment.