Changelog
This commit is contained in:
parent
8f24574403
commit
41614ba717
2 changed files with 11 additions and 2 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Reference in a new issue