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

Commit

Permalink
Prep for 0.1.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
seancorfield committed Mar 11, 2019
1 parent dafaeb4 commit 8a454f2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Install this tool to an alias in `$PROJECT/deps.edn` or `$HOME/.clojure/deps.edn
{
:aliases {:depstar
{:extra-deps
{seancorfield/depstar {:mvn/version "0.1.5"}}}}
{seancorfield/depstar {:mvn/version "0.1.6"}}}}
}
```

Expand Down Expand Up @@ -49,6 +49,12 @@ Note that `depstar` does no AOT compilation and does not add a manifest to the j
java -cp MyProject.jar clojure.main -m project.core
```

# Changes

* 0.1.6 -- Mar 10, 2019 -- Fix for JARs containing `data_readers.clj` (do not close input stream!); supports `-Ddepstar.debug=true` and `DEPSTAR_DEBUG=true` to be more verbose.
* 0.1.5 -- Oct 24, 2018 -- Fix for timestamp preservation.
* 0.1.2 -- Oct 23, 2018 -- Initial fork with (incorrect) fix for exception from JARs containing `data_readers.clj`; `hf.depstar.jar` namespace added.

# License

The use and distribution terms for this software are covered by the
Expand Down
2 changes: 1 addition & 1 deletion deps.edn
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
{:paths ["src"]
:deps {org.clojure/clojure {:mvn/version "1.9.0"}}}
:deps {org.clojure/clojure {:mvn/version "1.10.0"}}}
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>0.1.5</version>
<version>0.1.6</version>
<name>depstar</name>

<description>a clj-based uberjarrer</description>
Expand Down Expand Up @@ -35,7 +35,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.9.0</version>
<version>1.10.0</version>
</dependency>
</dependencies>

Expand Down

0 comments on commit 8a454f2

Please sign in to comment.