diff --git a/CHANGELOG.md b/CHANGELOG.md index df4a9988..d914840a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/script/changelog.clj b/script/changelog.clj index a0ed1bc3..f7af655d 100755 --- a/script/changelog.clj +++ b/script/changelog.clj @@ -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))