diff --git a/mohawk.spec b/mohawk.spec index 3932957..b0a16c6 100644 --- a/mohawk.spec +++ b/mohawk.spec @@ -8,7 +8,7 @@ %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: %{repo} -Version: 0.32.1 +Version: 0.32.2 Release: 1%{?dist} Summary: Time series metric data storage License: Apache @@ -47,6 +47,9 @@ install -p -m 0755 ./mohawk %{buildroot}%{_bindir}/mohawk %{_bindir}/mohawk %changelog +* Tue Jan 21 2018 Yaacov Zamir 0.32.2-1 +- Fix duplicate buckets for stats requests + * Tue Jan 11 2018 Yaacov Zamir 0.32.1-1 - Add error handlers to api calls - Alerts accept a list of metrics or a tags regex diff --git a/src/cli/README.md b/src/cli/README.md index 64f4b8c..405654c 100644 --- a/src/cli/README.md +++ b/src/cli/README.md @@ -13,7 +13,7 @@ When installed, run using the command line ``mohawk`` ```bash mohawk --version -Mohawk version: 0.32.1 +Mohawk version: 0.32.2 ``` The `-h` flag will print out a help text, that list the command line arguments. @@ -26,7 +26,7 @@ Mohawk is a metric data storage engine that uses a plugin architecture for data storage and a simple REST API as the primary interface. Version: - 0.32.1 + 0.32.2 Author: Yaacov Zamir diff --git a/src/server/server.go b/src/server/server.go index d939c53..208a4ad 100644 --- a/src/server/server.go +++ b/src/server/server.go @@ -39,7 +39,7 @@ import ( ) // VER the server version -const VER = "0.32.1" +const VER = "0.32.2" // defaults const defaultAPI = "0.21.0" diff --git a/test/mohawk.bats b/test/mohawk.bats index 04731c1..de9b9e6 100755 --- a/test/mohawk.bats +++ b/test/mohawk.bats @@ -36,10 +36,10 @@ wait_for_alert() { [ "$status" -eq 0 ] } -@test "Mohawk is installed in version 0.32.1" { +@test "Mohawk is installed in version 0.32.2" { run mohawk --version - [[ "$output" =~ "0.32.1" ]] + [[ "$output" =~ "0.32.2" ]] } @test "Server should be available" {