Skip to content

Commit

Permalink
Release 0.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
weavejester committed Mar 16, 2021
1 parent f6617f4 commit 8927e90
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 0.12.2 (2021-03-16)

* Updated Clojure to 1.10.3
* Updated `duct/core` to 0.8.0
* Updated `duct/module.logging` to 0.5.0
* Updated `duct/module.sql` to 0.6.1
* Updated `duct/module.web` to 0.7.2
* Updated Eftest to 0.5.9
* Updated Postgres and SQLite dependencies

## 0.12.1 (2019-05-11)

* Add support for third-party profiles to modify the configuration
Expand Down
11 changes: 7 additions & 4 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@
Update the Duct dependencies in your project file:

```clojure

[duct/core "0.8.0"]
[duct/module.cljs "0.4.1"]
[duct/module.logging "0.5.0"]
[duct/module.sql "0.6.1"]
[duct/module.web "0.7.2"]
```

Update the `duct/lein-duct` plugin version:

```clojure
[duct/lein-duct "0.12.1"]
[duct/lein-duct "0.12.2"]
```

## 0.11 from 0.10
Expand All @@ -22,11 +25,11 @@ Update the Duct dependencies in your project file:
```clojure

[duct/core "0.7.0"]
[duct/module.logging "0.4.0"]
[duct/module.web "0.7.0"]
[duct/module.ataraxy "0.3.0"]
[duct/module.cljs "0.4.0"]
[duct/module.logging "0.4.0"]
[duct/module.sql "0.5.0"]
[duct/module.web "0.7.0"]
```

Update the `duct/lein-duct` plugin version:
Expand Down
2 changes: 1 addition & 1 deletion lein-duct/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject duct/lein-duct "0.12.1"
(defproject duct/lein-duct "0.12.2"
:description "A plugin to be used in the Duct Leiningen template"
:url "https://github.com/duct-framework/duct"
:scm {:dir ".."}
Expand Down
2 changes: 1 addition & 1 deletion lein-template/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject duct/lein-template "0.12.1"
(defproject duct/lein-template "0.12.2"
:description "A template for an Integrant-based web application"
:url "https://github.com/duct-framework/duct"
:scm {:dir ".."}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
:dependencies [[org.clojure/clojure "1.10.3"]
[duct/core "0.8.0"]{{#deps}}
{{&.}}{{/deps}}]
:plugins [[duct/lein-duct "0.12.1"]]
:plugins [[duct/lein-duct "0.12.2"]]
:main ^:skip-aot {{namespace}}.main{{#uberjar-name}}
:uberjar-name "{{uberjar-name}}"{{/uberjar-name}}
:resource-paths ["resources" "target/resources"]
Expand Down

0 comments on commit 8927e90

Please sign in to comment.