From 6a84b510c6a545baa525a9d1d8e1699478e851d8 Mon Sep 17 00:00:00 2001 From: Ben Kochie Date: Sat, 19 Mar 2016 18:17:34 +0100 Subject: [PATCH] Release 0.2.0 * Update Makefile. * Add CHANGELOG.md. --- CHANGELOG.md | 14 ++++++++++++++ Makefile | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..00d21b9 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,14 @@ +## 0.2.0 / 2016-03-19 + +NOTE: This release renames `statsd_bridge` to `statsd_exporter` + +* [CHANGE] New Dockerfile using alpine-golang-make-onbuild base image (#17) +* [IMPROVEMENT] Allow configuration of UDP read buffer (#22) +* [BUGFIX] allow metrics with dashes when mapping (#24) +* [IMPROVEMENT] add root endpoint with redirect (#25) +* [CHANGE] rename bridge to exporter (#26) + + +## 0.1.0 / 2015-04-17 + +* Initial release diff --git a/Makefile b/Makefile index 6d09f82..97d0bea 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION := 0.1.0 +VERSION := 0.2.0 TARGET := statsd_exporter include Makefile.COMMON