Skip to content

Commit

Permalink
prep for 0.8.0 based on Clojure 1.12
Browse files Browse the repository at this point in the history
Signed-off-by: Sean Corfield <[email protected]>
  • Loading branch information
seancorfield committed Sep 6, 2024
1 parent f721b24 commit 2f96530
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# Changes

* v0.7.next in progress
* v0.8.0 -- 2024-09-05
* Add example of `:post-process-fn` to documentation.
* Update dev/test/build deps (Clojure to 1.11.4, `tools.build` to 0.10.5).
* Update default Clojure version in generated projects to 1.12.0.
* Update dev/test/build deps (Clojure to 1.12.0, `tools.build` to 0.10.5).

* v0.7.1 c1e42aa -- 2024-05-07
* Update default Clojure version in generated projects to 1.11.3; update various other dependencies too.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ both the implied `git` repo and also the template name, as if you had specified:
The examples above using `-A:1.12` assume an alias like this in your `deps.edn` file:

```clojure
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0-rc2"}}}
:1.12 {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}}
```

> Note: if you are on Windows, read [**Quoting keys and values**](https://clojure.org/reference/deps_and_cli#quoting) in the official **Deps and CLI Reference** documentation to understand how the above command needs to look on Powershell. Or take a look at the [Babashka CLI](#babashka-cli) library support.
Expand Down
4 changes: 2 additions & 2 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:paths ["src" "resources"]
:deps ; 1.12 required for add-lib
{org.clojure/clojure {:mvn/version "1.12.0-rc2"}
{org.clojure/clojure {:mvn/version "1.12.0"}
io.github.clojure/tools.build {:mvn/version "0.10.5"}}

:tools/usage
Expand All @@ -14,6 +14,6 @@
{:git/tag "v0.5.1" :git/sha "dfb30dd"}}
:exec-fn cognitect.test-runner.api/test}
:new ; for local testing as a tool
{:deps {org.clojure/clojure {:mvn/version "1.12.0-rc2"}
{:deps {org.clojure/clojure {:mvn/version "1.12.0"}
io.github.seancorfield/deps-new {:local/root "."}}
:ns-default org.corfield.new}}}
2 changes: 1 addition & 1 deletion resources/org/corfield/new/app/build/deps.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.4"}}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:aliases
{:run-m {:main-opts ["-m" "{{top/ns}}.{{main/ns}}"]}
:run-x {:ns-default {{top/ns}}.{{main/ns}}
Expand Down
2 changes: 1 addition & 1 deletion resources/org/corfield/new/lib/build/deps.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.4"}}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:aliases
{:test
{:extra-paths ["test"]
Expand Down
2 changes: 1 addition & 1 deletion resources/org/corfield/new/pom/root/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.11.4</version>
<version>1.12.0</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion resources/org/corfield/new/template/build/deps.tmpl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.4"}}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:aliases
{:test
{:extra-paths ["test"]
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.11.4"}}
:deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:aliases
{:test
{:extra-paths ["test"]
Expand Down

0 comments on commit 2f96530

Please sign in to comment.