Fix destructuring in multimethods

This commit is contained in:
Michiel Borkent 2023-01-05 11:33:19 +01:00
parent 4c5b74397e
commit 34e7cffad9
3 changed files with 7 additions and 3 deletions

View file

@ -2,6 +2,10 @@
[Scittle](https://github.com/babashka/scittle): execute Clojure(Script) directly from browser script tags via SCI! [Scittle](https://github.com/babashka/scittle): execute Clojure(Script) directly from browser script tags via SCI!
## v0.5.14 (2023-01-05)
- Fix destructuring in `defmethod` (by upgrading SCI)
## v0.5.13 (2022-12-23) ## v0.5.13 (2022-12-23)
- Fix `cljs.pprint` plugin - Fix `cljs.pprint` plugin

View file

@ -3,7 +3,7 @@
:deps :deps
{org.clojure/clojure {:mvn/version "1.11.1"} {org.clojure/clojure {:mvn/version "1.11.1"}
org.babashka/sci {:git/url "https://github.com/babashka/sci" org.babashka/sci {:git/url "https://github.com/babashka/sci"
:git/sha "39ce36540eb4c2c6adc74c23ea76ac6330ca7835"} :git/sha "6d20f08f189ff4027b682f33f93efd20d9e2d2d7"}
#_{:local/root "../babashka/sci"} #_{:local/root "../babashka/sci"}
reagent/reagent {:mvn/version "1.1.1"} reagent/reagent {:mvn/version "1.1.1"}
re-frame/re-frame {:mvn/version "1.3.0"} re-frame/re-frame {:mvn/version "1.3.0"}

View file

@ -88,8 +88,8 @@ script/release.clj
To create a new NPM release: To create a new NPM release:
- Prepare minor version in `package.json` if it should be bumped - Prepare version `package.json`, except patch (if anything should change here)
- Run `bb npm-publish`: this will compile, bump minor version, create tag and and push to npm and Github - Run `bb npm-publish`: this will compile, bump patch version, create tag and and push to npm and Github
- Create Github release with updated links - Create Github release with updated links
- `bb replace-version 0.4.11 0.5.13` - `bb replace-version 0.4.11 0.5.13`
- `bb gh-pages` - `bb gh-pages`