diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b210337..91c4c834 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,22 @@ ## master (unreleased) +### New Features + +### Changes + +### Bugs fixed + +## 3.17.1 (26-07-2024) + ### New Features - Add before-reload and after-reload hooks for the namespace reloading utilities ### Changes + - Update tutorial + ### Bugs fixed - Improve ns auto reload for namespaces loaded with load-file diff --git a/Readme.md b/Readme.md index 6c17cbb9..efd392fc 100644 --- a/Readme.md +++ b/Readme.md @@ -22,9 +22,9 @@ You use it by swapping the official Clojure compiler by ClojureStorm at dev time FlowStorm latest stable releases : - The complete debugger (includes `flow-storm-inst`) - - `[com.github.flow-storm/flow-storm-dbg "3.17.0"]` + - `[com.github.flow-storm/flow-storm-dbg "3.17.1"]` - A slimmer version with no GUI, to use it for Clojure or ClojureScript remote debugging - - `[com.github.flow-storm/flow-storm-inst "3.17.0"]` + - `[com.github.flow-storm/flow-storm-inst "3.17.1"]` ClojureStorm latest stable releases : diff --git a/build.clj b/build.clj index 62a2beca..99bc5917 100644 --- a/build.clj +++ b/build.clj @@ -5,7 +5,7 @@ [clojure.spec.alpha :as s])) (def version (or (System/getenv "VERSION") - "3.17.0")) + "3.17.1")) (def target-dir "target") (def class-dir (str target-dir "/classes"))