Fork me on GitHub
#babashka
<
2022-01-25
>
borkdude10:01:06

I have a local script on my laptop like this:

install-bb --version 0.7.4-SNAPSHOT --dir ~/Dropbox/bin
It installs the latest SNAPSHOT version from master and puts it in a directory on the PATH, so I can easily test with the newest. I encourage you to do so, to help me catch bugs early before release :). install-bb is the same install script from the babashka repo, but since it's on my PATH I gave it a more recognizable name. clojure.math was just added:
$ bb -e '(clojure.math/pow 2 8)'
256.0

teodorlu10:01:49

:thumbsup: I adapted my system upgrade script to also install bb-snap, leaving it here in case it's useful for others. 1. It's a fast noop if there are no new updates 2. Previous versions are stored in $HOME/opt 3. The installation itself is just a symlink.

👍 2
borkdude10:01:22

Also $ bb -e 'iteration' is now available

borkdude10:01:02

For Windows, you can download the latest master release manually from https://github.com/babashka/babashka-dev-builds/releases

borkdude15:01:00

Babashka 0.7.4 is now released 🎉 https://babashka.org/ Please leave some feedback in the survey if you are using it. https://forms.gle/ko3NjDg2SwXeEoNQ9 • Add new namespace from clojure 1.11: `clojure.math` • Add new vars from clojure 1.11: `abs`, `iteration` • Add compatibility with `org.clojure/algo.monads` • SCI: support `:as-alias` • SCI: add `pop!` (https://github.com/kbaba1001) • deps.clj: update to clojure CLI 1.10.3.1058 • Add metabom jar to docker images https://github.com/babashka/babashka/issues/1133 (https://github.com/kipzhttps://github.com/lispyclouds) • Add opencontainers annotations to docker image https://github.com/babashka/babashka/issues/1134 (https://github.com/kipzhttps://github.com/lispyclouds) • Fix Alpine Linux Docker images in CI script https://github.com/babashka/babashka/issues/1140 (https://github.com/kipzhttps://github.com/lispyclouds) • babashka.fs: create dirs in `copy-tree` (https://github.com/duzunov) • SCI: fix order of metadata evaluation (https://github.com/erdos) • Fix: cannot take value of macro of `->` • Fix https://github.com/babashka/babashka/issues/1144: cannot create multidimensional arrays • Fix https://github.com/babashka/babashka/issues/1143: allow optional (ignored) `--` when using using `--main` (https://github.com/grzm) • SCI: throw when `recur` is used from non-tail position • Add more libraries to CI lib tests (https://github.com/cljwalker) • Upgrade several built-in deps: `org.clojure/clojure`, `cheshire`, `core.async`, `test.check`

🎉 13
1