Skip to content

Commit

Permalink
prep 0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ikitommi committed Jan 1, 2025
1 parent 7093e08 commit 38f49f6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clojure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
matrix:
# LTS and latest
jdk: [8,11,16]
jdk: [8, 11, 17, 21]
name: "Clojure (Java ${{ matrix.jdk }})"
runs-on: ubuntu-latest
steps:
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.9.5 (1.1.2025)

- Fix pre-expr syntax [#34](https://github.com/metosin/ring-http-response/pull/34)
- updated dependencies:

```clojure
[ring/ring-core "1.13.0"] is available but we use "1.12.2"
```

## 0.9.4 (29.6.2024)

- add teapot functionality [#33](https://github.com/metosin/ring-http-response/pull/33)
Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
(defproject metosin/ring-http-response "0.9.4"
(defproject metosin/ring-http-response "0.9.5"
:description "Handling HTTP Statuses with Clojure(Script)"
:url "https://github.com/metosin/ring-http-response"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"
:distribution :repo
:comments "same as Clojure"}
:dependencies [[ring/ring-core "1.12.2"]
:dependencies [[ring/ring-core "1.13.0"]
[potemkin "0.4.7"]]
:profiles {:dev {:plugins [[lein-clojars "0.9.1"]]
:resource-paths ["templates"]
:source-paths ["dev"]
:dependencies [[org.clojure/clojure "1.11.3"]
:dependencies [[org.clojure/clojure "1.12.0"]
[org.tobereplaced/lettercase "1.0.0"]
[stencil "0.5.0"]]}
:1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}}
:1.10 {:dependencies [[org.clojure/clojure "1.10.0"]]}}
:deploy-repositories [["releases" {:url "https://repo.clojars.org/"
:sign-releases false
:username :env/CLOJARS_USER
Expand Down

0 comments on commit 38f49f6

Please sign in to comment.