diff --git a/CHANGELOG.md b/CHANGELOG.md index 853dbe0b..d9d9090a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,26 @@ For a list of breaking changes, check [here](#breaking-changes) -## v0.1.1 (unreleased) +## v0.1.1 (2020-06-10) -## v0.1.0 +Thanks [@Chowlz](https://github.com/Chowlz) and +[@mharju](https://github.com/mharju) for contributing to this release. + +This release brings compatibility with the +[camel-snake-kebab](https://github.com/clj-commons/camel-snake-kebab) and +[aero](https://github.com/juxt/aero/) libraries due to the introduction of +`defprotocol`, `defrecord` and other enhancements. + +- Fix interop with result of `.enviroment` method on `ProcessBuilder` [#460](https://github.com/borkdude/babashka/issues/460)null +- Disable signal handlers via environment variable for AWS Lambda [#462](https://github.com/borkdude/babashka/issues/462) ([@Chowlz](https://github.com/Chowlz)) +- babashka.curl: fix double quote escaping issue on Windows +- Add `java.io.Console` +- Add initial support for `defprotocol` and `defrecord` +- Add `default-data-readers` +- Fix resolving var in syntazx-quote from other namespace brought in via `:refer` +- `io/resource` should return `nil` for non-relative paths instead of throwing + +## v0.1.0 (2020-06-01) Thanks [@martinklepsch](https://github.com/martinklepsch) and [@cldwalker](https://github.com/cldwalker) for contributing to this release. diff --git a/resources/BABASHKA_VERSION b/resources/BABASHKA_VERSION index 85fa15b0..6da28dde 100644 --- a/resources/BABASHKA_VERSION +++ b/resources/BABASHKA_VERSION @@ -1 +1 @@ -0.1.1-SNAPSHOT \ No newline at end of file +0.1.1 \ No newline at end of file diff --git a/script/changelog.clj b/script/changelog.clj index f7af655d..2fb46dc4 100755 --- a/script/changelog.clj +++ b/script/changelog.clj @@ -5,12 +5,12 @@ (let [changelog (slurp "CHANGELOG.md") replaced (str/replace changelog - #"#(\d+)(:? )" + #" #(\d+)" (fn [[_ issue after]] - (format "[#%s](https://github.com/borkdude/babashka/issues/%s)%s" + (format " [#%s](https://github.com/borkdude/babashka/issues/%s)%s" issue issue after))) replaced (str/replace replaced - #"@(\w+)([, .])" + #"@(\w+)([, .\)])" (fn [[_ name after]] (format "[@%s](https://github.com/%s)%s" name name after)))]