From 8f10b3e18c3c4e867533289461da22dd9704a666 Mon Sep 17 00:00:00 2001 From: Dave Yarwood Date: Sat, 14 Jan 2017 11:03:28 -0500 Subject: [PATCH] bump version, add changelog --- CHANGELOG.md | 15 +++++++++++++++ build.boot | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..9a17fe6 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# CHANGELOG + +## 0.1.1 (2017-01-14) + +* Fixed 2 bugs re: `alda list` output: + * It didn't work correctly on non-OS X systems like Ubuntu due to differences in the `ps` command across Unix distributions. + * Fixed buggy output when running multiple Alda servers ([#4](https://github.com/alda-lang/alda-client-java/issues/4)). + +Major thanks to [tobiasriedling] for both fixes! + +## 0.1.0 (2016-11-19) + +* * Extracted alda-client-java from the [main Alda repo](https://github.com/alda-lang/alda) as of version 1.0.0-rc50. + +[tobiasriedling]: https://github.com/tobiasriedling diff --git a/build.boot b/build.boot index 0fe35e2..81da8fa 100755 --- a/build.boot +++ b/build.boot @@ -24,7 +24,7 @@ (require '[adzerk.bootlaces :refer :all]) -(def ^:const +version+ "0.1.0") +(def ^:const +version+ "0.1.1") (bootlaces! +version+)