diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e716e1b..e11ed510 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ A preview of the next release can be installed from - [#1000](https://github.com/babashka/babashka/issues/1000): add lib tests for xforms ([@bobisageek](https://github.com/bobisageek)) - [#1482](https://github.com/babashka/babashka/issues/1482): make loading of libs thread safe - [#1487](https://github.com/babashka/babashka/issues/1487): `babashka.tasks/clojure` should be supported without arguments to start a REPL +- [#1496](https://github.com/babashka/babashka/issues/1496): Add `set-agent-send-executor!` and `set-agent-send-off-executor!` ## 1.1.173 (2023-02-04) diff --git a/src/babashka/impl/clojure/core.clj b/src/babashka/impl/clojure/core.clj index ff7feaa8..1aad8bdb 100644 --- a/src/babashka/impl/clojure/core.clj +++ b/src/babashka/impl/clojure/core.clj @@ -202,5 +202,7 @@ 'into-array (sci/copy-var into-array clojure-core-ns) 'print-method (sci/copy-var print-method clojure-core-ns) 'print-dup (sci/copy-var print-dup clojure-core-ns) - 'PrintWriter-on (sci/copy-var PrintWriter-on clojure-core-ns)} + 'PrintWriter-on (sci/copy-var PrintWriter-on clojure-core-ns) + 'set-agent-send-executor! (sci/copy-var set-agent-send-executor! clojure-core-ns) + 'set-agent-send-off-executor! (sci/copy-var set-agent-send-off-executor! clojure-core-ns)} )