diff --git a/CHANGELOG.md b/CHANGELOG.md index a58f008..3fd2ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.9.0 - 2023-12-07 +### Changes +- Added support for [Flows](/doc/03-flows.md) (alpha) [PR 25](https://github.com/htihospitality/re-dash/pull/25) +- Added namespace `hti.re-dash.alpha` for trying out API's that might change in future. +- Added deprecation notice for namespace `hti.re-dash` - use `hti.re-dash.core` instead. + ## 0.8.1 - 2023-11-21 ### Changes - Added re-dash-testing namespace to deployed jar artifact diff --git a/README.md b/README.md index 8097f71..c011161 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Then, add the `re-dash` dependency #### from clojars ```edn -:deps {net.clojars.htihospitality/re-dash {:mvn/version "0.8.1"}} +:deps {net.clojars.htihospitality/re-dash {:mvn/version "0.9.0"}} ``` #### from a commit diff --git a/build.clj b/build.clj index be12aae..b48f343 100644 --- a/build.clj +++ b/build.clj @@ -3,7 +3,7 @@ (:require [org.corfield.build :as bb])) (def lib 'net.clojars.htihospitality/re-dash) -(def version "0.8.1") +(def version "0.9.0") (defn test "Run the tests." [opts] (bb/run-tests opts))