From efd41306ec54e9a856b77ec945cdb08fdfce8c94 Mon Sep 17 00:00:00 2001 From: yaacov Date: Sat, 30 Dec 2017 19:38:14 +0200 Subject: [PATCH] bump version --- mohawk.spec | 11 ++++++++++- src/cli/README.md | 4 ++-- src/server/server.go | 2 +- test/mohawk.bats | 4 ++-- 4 files changed, 15 insertions(+), 6 deletions(-) diff --git a/mohawk.spec b/mohawk.spec index f337132..4a6a368 100644 --- a/mohawk.spec +++ b/mohawk.spec @@ -8,7 +8,7 @@ %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: %{repo} -Version: 0.27.1 +Version: 0.28.2 Release: 1%{?dist} Summary: Time series metric data storage License: Apache @@ -47,6 +47,15 @@ install -p -m 0755 ./mohawk %{buildroot}%{_bindir}/mohawk %{_bindir}/mohawk %changelog +* Sat Dec 30 2017 Yaacov Zamir 0.28.2-1 +- Response includes feedback +- Remove empty stats response +- Add help (cli) for storage options +- Enable string time format parsing, e.g. -7h, 6mn +- Add the /m metrics endpoint (rest api) +- Add memory storage options, retention and granularity times +- Add mongo storage options, multiple servers, username and password + * Wed Dec 6 2017 Yaacov Zamir 0.27.1-1 - Add min max to memory storage stats diff --git a/src/cli/README.md b/src/cli/README.md index dfc729f..37ee73b 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.27.1 +Mohawk version: 0.28.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.27.1 + 0.28.2 Author: Yaacov Zamir diff --git a/src/server/server.go b/src/server/server.go index 9de2018..0442888 100644 --- a/src/server/server.go +++ b/src/server/server.go @@ -39,7 +39,7 @@ import ( ) // VER the server version -const VER = "0.27.1" +const VER = "0.28.2" // defaults const defaultAPI = "0.21.0" diff --git a/test/mohawk.bats b/test/mohawk.bats index defe4f2..0494ede 100755 --- a/test/mohawk.bats +++ b/test/mohawk.bats @@ -35,10 +35,10 @@ wait_for_alert() { [ "$status" -eq 0 ] } -@test "Mohawk is installed in version 0.27.1" { +@test "Mohawk is installed in version 0.28.2" { run mohawk --version - [[ "$output" =~ "0.27.1" ]] + [[ "$output" =~ "0.28.2" ]] } @test "Server should be available" {