diff --git a/CHANGELOG.md b/CHANGELOG.md index 585ef02b..b6db111d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ A preview of the next release can be installed from - Partially Fix [#1695](https://github.com/babashka/babashka/issues/1695): `--repl` arg handling should consume only one arg (itself) ([@bobisageek](https://github.com/bobisageek)) - Partially Fix [#1695](https://github.com/babashka/babashka/issues/1695): make `*command-line-args*` value available in the REPL ([@bobisageek](https://github.com/bobisageek)) - Fix [#1686](https://github.com/babashka/babashka/issues/1686): do not fetch dependencies/invoke java for `version`, `help`, and `describe` options ([@bobisageek](https://github.com/bobisageek)) +- [#1696](https://github.com/babashka/babashka/issues/1696): add `clojure.lang.DynamicClassLoader` constructors ([@bobisageek](https://github.com/bobisageek)) - [#1696](https://github.com/babashka/babashka/issues/1696): add `clojure.core/*source-path*` (unused) ([@bobisageek](https://github.com/bobisageek)) - [#1696](https://github.com/babashka/babashka/issues/1696): add `clojure.main/with-read-known` ([@bobisageek](https://github.com/bobisageek)) - [#1696](https://github.com/babashka/babashka/issues/1696): add `clojure.core.server/repl-read` ([@bobisageek](https://github.com/bobisageek)) diff --git a/src/babashka/impl/server.clj b/src/babashka/impl/server.clj index a1e9fdd0..b61f6d7a 100644 --- a/src/babashka/impl/server.clj +++ b/src/babashka/impl/server.clj @@ -1,7 +1,7 @@ (ns babashka.impl.server (:require [babashka.impl.clojure.core.server :as server] [babashka.impl.common :as common] - [babashka.impl.repl :as repl] + [babashka.impl.repl :as repl] [babashka.impl.socket-repl :as socket-repl] [sci.core :as sci]))