diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a165c4..c8bd57c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,12 +13,12 @@ ## v0.6.22 (2024-12-19) -- [#99](https://github.com/babashka/babashka/issues/99): make `js/import` work +- [#99](https://github.com/babashka/scittle/issues/99): make `js/import` work ## v0.6.20 (2024-11-24) -- [#55](https://github.com/babashka/babashka/issues/55): create gh-pages dir before using. -- [#89](https://github.com/babashka/babashka/issues/89): allow `evaluate_script_tags` to specify individual scripts. +- [#55](https://github.com/babashka/scittle/issues/55): create gh-pages dir before using. +- [#89](https://github.com/babashka/scittle/issues/89): allow `evaluate_script_tags` to specify individual scripts. - [#87](https://github.com/babashka/scittle/issues/87): prod build on fresh checkout fails ## v0.6.19 (2024-10-08) @@ -27,17 +27,17 @@ ## v0.6.18 (2024-04-30) -- [#77](https://github.com/babashka/babashka/issues/77): make dependency on browser (`js/document`) optional so scittle can run in webworkers, Node.js, etc. +- [#77](https://github.com/babashka/scittle/issues/77): make dependency on browser (`js/document`) optional so scittle can run in webworkers, Node.js, etc. ## v0.6.17 (2024-04-22) -- [#69](https://github.com/babashka/babashka/issues/69): executing script tag with src + whitespace doesn't work -- [#72](https://github.com/babashka/babashka/issues/72): add clojure 1.11 functions like `update-vals` -- [#75](https://github.com/babashka/babashka/issues/75): Support reader conditionals in source code +- [#69](https://github.com/babashka/scittle/issues/69): executing script tag with src + whitespace doesn't work +- [#72](https://github.com/babashka/scittle/issues/72): add clojure 1.11 functions like `update-vals` +- [#75](https://github.com/babashka/scittle/issues/75): Support reader conditionals in source code ## v0.6.16 (2023-05-04) -- [#58](https://github.com/babashka/babashka/issues/58): build system for creating scittle distribution with custom libraries. See [plugins/demo](plugins/demo). +- [#58](https://github.com/babashka/scittle/issues/58): build system for creating scittle distribution with custom libraries. See [plugins/demo](plugins/demo). - Use `window.location.hostname` for WebSocket connection instead of hardcoding `"localhost"` ([@pyrmont](https://github.com/pyrmont)) - Upgrade `sci.configs` to `"33bd51e53700b224b4cb5bda59eb21b62f962745"` - Update nREPL implementation: implement `eldoc` (`info`, `lookup`) ([@benjamin-asdf](https://github.com/benjamin-asdf)) diff --git a/script/changelog.clj b/script/changelog.clj index f7810c6..1ef014a 100755 --- a/script/changelog.clj +++ b/script/changelog.clj @@ -7,7 +7,7 @@ replaced (str/replace changelog #" #(\d+)" (fn [[_ issue after]] - (format " [#%s](https://github.com/babashka/babashka/issues/%s)%s" + (format " [#%s](https://github.com/babashka/scittle/issues/%s)%s" issue issue (str after)))) replaced (str/replace replaced #"@([a-zA-Z0-9-_]+)([, \.)])"