Fix destructuring in multimethods
This commit is contained in:
parent
4c5b74397e
commit
34e7cffad9
|
@ -2,6 +2,10 @@
|
|||
|
||||
[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)
|
||||
|
||||
- Fix `cljs.pprint` plugin
|
||||
|
|
2
deps.edn
2
deps.edn
|
@ -3,7 +3,7 @@
|
|||
:deps
|
||||
{org.clojure/clojure {:mvn/version "1.11.1"}
|
||||
org.babashka/sci {:git/url "https://github.com/babashka/sci"
|
||||
:git/sha "39ce36540eb4c2c6adc74c23ea76ac6330ca7835"}
|
||||
:git/sha "6d20f08f189ff4027b682f33f93efd20d9e2d2d7"}
|
||||
#_{:local/root "../babashka/sci"}
|
||||
reagent/reagent {:mvn/version "1.1.1"}
|
||||
re-frame/re-frame {:mvn/version "1.3.0"}
|
||||
|
|
|
@ -88,8 +88,8 @@ script/release.clj
|
|||
|
||||
To create a new NPM release:
|
||||
|
||||
- Prepare minor version in `package.json` if it should be bumped
|
||||
- Run `bb npm-publish`: this will compile, bump minor version, create tag and and push to npm and Github
|
||||
- Prepare version `package.json`, except patch (if anything should change here)
|
||||
- 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
|
||||
- `bb replace-version 0.4.11 0.5.13`
|
||||
- `bb gh-pages`
|
||||
|
|
Loading…
Reference in a new issue