Skip to content
This repository was archived by the owner on Dec 2, 2024. It is now read-only.

Commit

Permalink
prep for 2.1.253
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Jul 11, 2021
1 parent dc614ed commit a970a33
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changes

* 2.1.253 -- 2021-07-11
* Fix #94 by adding `:extra-deps` from `:aliases` to `:deps` used for `pom.xml` synchronization.

* 2.1.250 -- 2021-07-09
* Add `:tools/usage` and instructions for new CLI `tools` support.
* Update `clojure.tools.deps.alpha` and use its new `create-basis` function, instead of rolling my own.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
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.1.250"}}
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
:exec-fn hf.depstar/uberjar
:exec-args {:aot true}}
;; build a jar (library):
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.250"}}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
: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.1.250"}}
:depstar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
:ns-default hf.depstar
:exec-args {}}
}
Expand Down Expand Up @@ -67,7 +67,7 @@ If you want to see all of the files that are being copied into the JAR file, add
> If you are using the latest prerelease of the Clojure CLI, 1.10.3.905 onward, you can install `depstar` as a "tool" instead of updating your `deps.edn` file and then invoke it using the following commands:
```bash
clojure -Ttools install com.github.seancorfield/depstar '{:git/tag "v2.1.250"}' :as depstar
clojure -Ttools install com.github.seancorfield/depstar '{:git/tag "v2.1.253"}' :as depstar
# make an uberjar:
clojure -Tdepstar uberjar :jar MyProject.jar
# make a thin JAR:
Expand Down Expand Up @@ -293,7 +293,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.1.250"}}
:uberjar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "MyProject.jar"
:aot true
Expand Down Expand Up @@ -322,7 +322,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.1.250"}}
{com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
:exec-fn hf.depstar/uberjar
:exec-args {:jar "MyProject.jar"
:aot true
Expand Down Expand Up @@ -356,7 +356,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.1.250"}}
:jar {:replace-deps {com.github.seancorfield/depstar {:mvn/version "2.1.253"}}
: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 @@ -450,7 +450,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.1.250
Latest stable release: 2.1.253

# 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>com.github.seancorfield</groupId>
<artifactId>depstar</artifactId>
<version>2.1.250</version>
<version>2.1.253</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.1.250</tag>
<tag>v2.1.253</tag>
</scm>
<dependencies>
<dependency>
Expand Down

0 comments on commit a970a33

Please sign in to comment.