Changelog

This commit is contained in:
Michiel Borkent 2020-06-01 10:56:00 +02:00
parent 8f24574403
commit 41614ba717
2 changed files with 11 additions and 2 deletions

View file

@ -2,7 +2,11 @@
For a list of breaking changes, check [here](#breaking-changes)
## v0.1.0 (unreleased)
## v0.1.1 (unreleased)
## v0.1.0
Thanks [@martinklepsch](https://github.com/martinklepsch) and [@cldwalker](https://github.com/cldwalker) for contributing to this release.
- Add more `java.time` classes. This makes babashka fully compatible with the
[cljc.java-time](https://github.com/henryw374/cljc.java-time) library.

View file

@ -8,5 +8,10 @@
#"#(\d+)(:? )"
(fn [[_ issue after]]
(format "[#%s](https://github.com/borkdude/babashka/issues/%s)%s"
issue issue after)))]
issue issue after)))
replaced (str/replace replaced
#"@(\w+)([, .])"
(fn [[_ name after]]
(format "[@%s](https://github.com/%s)%s"
name name after)))]
(spit "CHANGELOG.md" replaced))