Skip to content
This repository has been archived by the owner on Sep 16, 2021. It is now read-only.

Commit

Permalink
Prep for 2.0.165
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Dec 29, 2020
1 parent 12faade commit 4a4207a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changes

* 2.0.next -- in progress
* Escape compile process arguments when shelling out on Windows. Fixes #58 (@borkdude).
* 2.0.165 -- 2020-12-28
* Escape compile process arguments when shelling out on Windows. Fixes #57 via PR #58 (@borkdude).

* 2.0.161 -- 2020-12-23
* Allow more formats of `<tag>` to be matched against the version, when synchronizing `:version`. Fixes #55.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ For `depstar` 2.x:
{
:aliases {:depstar
{:replace-deps ; tool usage is new in 2.x
{seancorfield/depstar {:mvn/version "2.0.161"}}
{seancorfield/depstar {:mvn/version "2.0.165"}}
:ns-default hf.depstar
:exec-args {}}}
}
Expand Down Expand Up @@ -205,7 +205,7 @@ You can make this shorter by adding `:exec-fn` to your alias with some of the ar

```clojure
;; a new :uberjar alias to build a project-specific JAR file:
:uberjar {:replace-deps {seancorfield/depstar {:mvn/version "2.0.161"}}
:uberjar {:replace-deps {seancorfield/depstar {:mvn/version "2.0.165"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "MyProject.jar"
:aot true
Expand Down Expand Up @@ -281,7 +281,7 @@ This expects your Clojars username to be in the `CLOJARS_USERNAME` environment v

This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.

Latest stable release: 2.0.161
Latest stable release: 2.0.165

# License

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>seancorfield</groupId>
<artifactId>depstar</artifactId>
<version>2.0.161</version>
<version>2.0.165</version>
<name>depstar</name>
<description>a clj-based uberjarrer</description>
<url>https://github.com/seancorfield/depstar</url>
Expand All @@ -25,7 +25,7 @@
<url>https://github.com/seancorfield/depstar</url>
<connection>scm:git:git://github.com/seancorfield/depstar.git</connection>
<developerConnection>scm:git:ssh://git@github.com/seancorfield/depstar.git</developerConnection>
<tag>v2.0.161</tag>
<tag>v2.0.165</tag>
</scm>
<dependencies>
<dependency>
Expand Down

0 comments on commit 4a4207a

Please sign in to comment.