Fix #1748: add clojure.core/ensure (#1749)

This commit is contained in:
Michiel Borkent 2024-10-15 15:08:47 +02:00 committed by GitHub
parent 24c644d9f0
commit 5902852ff9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -7,6 +7,10 @@ A preview of the next release can be installed from
[Babashka](https://github.com/babashka/babashka): Native, fast starting Clojure interpreter for scripting [Babashka](https://github.com/babashka/babashka): Native, fast starting Clojure interpreter for scripting
## Unreleased
- [#1748](https://github.com/babashka/babashka/issues/1748): add `clojure.core/ensure`
## 1.12.194 (2024-10-12) ## 1.12.194 (2024-10-12)
- Upgrade to GraalVM 23 - Upgrade to GraalVM 23

View file

@ -179,6 +179,8 @@
'sync (sci/copy-var sync clojure-core-ns) 'sync (sci/copy-var sync clojure-core-ns)
'ref (sci/copy-var ref clojure-core-ns) 'ref (sci/copy-var ref clojure-core-ns)
'ref-set (sci/copy-var ref-set clojure-core-ns) 'ref-set (sci/copy-var ref-set clojure-core-ns)
'ensure (sci/copy-var ensure clojure-core-ns)
;; end STM
'update-vals (sci/copy-var update-vals clojure-core-ns) 'update-vals (sci/copy-var update-vals clojure-core-ns)
'update-keys (sci/copy-var update-keys clojure-core-ns) 'update-keys (sci/copy-var update-keys clojure-core-ns)
'parse-boolean (sci/copy-var parse-boolean clojure-core-ns) 'parse-boolean (sci/copy-var parse-boolean clojure-core-ns)