diff --git a/CHANGELOG.md b/CHANGELOG.md index 381a6675..ae5d7990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,10 +7,23 @@ A preview of the next release can be installed from [Babashka](https://github.com/babashka/babashka): Native, fast starting Clojure interpreter for scripting -## Unreleased +## 1.0.170 (2023-01-19) - [#1463](https://github.com/babashka/babashka/issues/1463): Add `java.util.jar.Attributes` class ([@jeroenvandijk](https://github.com/jeroenvandijk)) - [#1456](https://github.com/babashka/babashka/issues/1456): allow `*warn-on-reflection*` and `*unchecked-math*` to be set in socket REPL and nREPL ([@axks](https://github.com/axks)) +- SCI: macroexpansion error location improvement +- Add compatibility with [tab](https://github.com/eerohele/tab) and [solenoid](https://github.com/adam-james-v/solenoid) +- Bump babashka.cli and babashka.fs +- New classes: + - `java.util.jar.Attributes` + - `java.util.concurrent.ThreadFactory` + - `java.lang.Thread$UncaughtExceptionHandler` + - `java.lang.Thread$UncaughtExceptionHandler` + - `java.util.concurrent.BlockingQueue` + - `java.util.concurrent.ArrayBlockingQueue` + - `java.util.concurrent.ThreadFactory` + - `java.lang.Thread$UncaughtExceptionHandler` +- Expose more httpkit.server functions: `with-channel`, `on-close`, `close` ## 1.0.169 (2023-01-03) diff --git a/resources/BABASHKA_VERSION b/resources/BABASHKA_VERSION index 2f371e46..b10d0efb 100644 --- a/resources/BABASHKA_VERSION +++ b/resources/BABASHKA_VERSION @@ -1 +1 @@ -1.0.170-SNAPSHOT \ No newline at end of file +1.0.170 \ No newline at end of file diff --git a/src/babashka/impl/print_deps.clj b/src/babashka/impl/print_deps.clj index 0e9d0288..cd6a5149 100644 --- a/src/babashka/impl/print_deps.clj +++ b/src/babashka/impl/print_deps.clj @@ -14,11 +14,11 @@ edn/read-string) deps (:deps deps) deps (assoc deps - 'babashka/fs {:mvn/version "0.2.12"} + 'babashka/fs {:mvn/version "0.2.14"} 'babashka/babashka.curl {:mvn/version "0.1.2"} 'babashka/babashka.core {:git/url "https://github.com/babashka/babashka.core" :git/sha "52a6037bd4b632bffffb04394fb4efd0cdab6b1e"} - 'babashka/process {:mvn/version "0.4.13"}) + 'babashka/process {:mvn/version "0.4.14"}) deps (dissoc deps 'borkdude/sci 'org.babashka/sci