diff --git a/CHANGELOG.md b/CHANGELOG.md index a39aa70..a9f5c90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## 0.9.4 (29.6.2024) + +- add teapot functionality [#33](https://github.com/metosin/ring-http-response/pull/33) +- updated dependencies: + +```clojure +[ring/ring-core "1.12.2"] is available but we use "1.10.0" +[potemkin "0.4.7"] is available but we use "0.4.5" +``` + ## 0.9.3 (25.8.2021) - updated dependencies: diff --git a/project.clj b/project.clj index a119532..df7aec4 100644 --- a/project.clj +++ b/project.clj @@ -1,24 +1,21 @@ -(defproject metosin/ring-http-response "0.9.3" +(defproject metosin/ring-http-response "0.9.4" :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.10.0"] - [potemkin "0.4.5"]] + :dependencies [[ring/ring-core "1.12.2"] + [potemkin "0.4.7"]] :profiles {:dev {:plugins [[lein-clojars "0.9.1"]] :resource-paths ["templates"] :source-paths ["dev"] - :dependencies [[org.clojure/clojure "1.10.2"] + :dependencies [[org.clojure/clojure "1.11.3"] [org.tobereplaced/lettercase "1.0.0"] [stencil "0.5.0"]]} - :1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]} - :1.8 {:dependencies [[org.clojure/clojure "1.8.0"]]} - :1.9 {:dependencies [[org.clojure/clojure "1.9.0"]]} :1.10 {:dependencies [[org.clojure/clojure "1.10.3"]]}} :deploy-repositories [["releases" {:url "https://repo.clojars.org/" :sign-releases false :username :env/CLOJARS_USER :password :env/CLOJARS_DEPLOY_TOKEN}]] - :aliases {"all" ["with-profile" "dev:dev,1.7:dev,1.8:dev,1.9:dev,1.10" "test"]}) + :aliases {"all" ["with-profile" "dev:dev,1.10" "test"]})