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.216
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Apr 14, 2021
1 parent 2968a16 commit 5eb5591
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changes

* 2.0.next in progress
* 2.0.216 -- 2021-04-14
* Address #77 by noting the possible interaction of `user.clj` and `depstar` and suggesting `:replace-paths []`.
* Fix #76 adjusting AOT selection logic (`:aot true` without `:main-class` gives a warning and does not attempt to compile anything).

Expand Down
14 changes: 7 additions & 7 deletions README.md
Expand Up @@ -16,15 +16,15 @@ Install this tool to an alias in your project `deps.edn` or user-level `deps.edn
{
:aliases {
;; build an uberjar (application) with AOT compilation by default:
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/uberjar
:exec-args {:aot true}}
;; build a jar (library):
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/jar
:exec-args {}}
;; generic depstar alias, use with jar or uberjar function name:
:depstar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
:depstar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:ns-default hf.depstar
:exec-args {}}
}
Expand Down Expand Up @@ -95,7 +95,7 @@ pushed, I perform one last commit with the following updates:
```clj
;; override the example :jar alias with a specific one:
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/jar
:exec-args {:jar "clj-new.jar" :sync-pom true}}
:deploy {:replace-deps {slipset/deps-deploy {:mvn/version "0.1.5"}}
Expand Down Expand Up @@ -298,7 +298,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 {com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "MyProject.jar"
:aot true
Expand Down Expand Up @@ -327,7 +327,7 @@ user `deps.edn` file). For example:
;; using an alias as a value for :jvm-opts:
:uberjar
{:replace-deps
{com.github.seancorfield/depstar {:mvn/version "2.0.211"}}
{com.github.seancorfield/depstar {:mvn/version "2.0.216"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "MyProject.jar"
:aot true
Expand Down Expand Up @@ -397,7 +397,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.211
Latest stable release: 2.0.216

# License

Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.seancorfield</groupId>
<artifactId>depstar</artifactId>
<version>2.0.211</version>
<version>2.0.216</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.211</tag>
<tag>v2.0.216</tag>
</scm>
<dependencies>
<dependency>
Expand Down

0 comments on commit 5eb5591

Please sign in to comment.