diff --git a/CHANGELOG.md b/CHANGELOG.md index cbedc7a6..473540ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ A preview of the next release can be installed from - [#1280](https://github.com/babashka/babashka/issues/1280): babashka REPL doesn't quit right after Ctrl-d ([@formerly-a-trickster](https://github.com/formerly-a-trickster) and Alice Margatroid) - [#1446](https://github.com/babashka/babashka/issues/1446): add `pprint/code-dispatch` - Update zlib to version `1.2.13` ([@thiagokokada](https://github.com/thiagokokada)) +- [#1454](https://github.com/babashka/babashka/issues/1454): Add `babashka.process` to `print-deps` output ## 1.0.168 (2022-12-07) diff --git a/src/babashka/impl/print_deps.clj b/src/babashka/impl/print_deps.clj index 45e2b3f8..0e9d0288 100644 --- a/src/babashka/impl/print_deps.clj +++ b/src/babashka/impl/print_deps.clj @@ -14,10 +14,11 @@ edn/read-string) deps (:deps deps) deps (assoc deps - 'babashka/fs {:mvn/version "0.1.2"} - 'babashka/babashka.curl {:mvn/version "0.1.1"} + 'babashka/fs {:mvn/version "0.2.12"} + 'babashka/babashka.curl {:mvn/version "0.1.2"} 'babashka/babashka.core {:git/url "https://github.com/babashka/babashka.core" - :git/sha "52a6037bd4b632bffffb04394fb4efd0cdab6b1e"}) + :git/sha "52a6037bd4b632bffffb04394fb4efd0cdab6b1e"} + 'babashka/process {:mvn/version "0.4.13"}) deps (dissoc deps 'borkdude/sci 'org.babashka/sci