From 7c5600bec08828204e40eaa35175486bf26528a4 Mon Sep 17 00:00:00 2001 From: yaacov Date: Sun, 24 Dec 2017 17:09:09 +0200 Subject: [PATCH] Bump bugfix verision --- mohawk.spec | 4 ++-- src/cli/README.md | 4 ++-- src/server/server.go | 2 +- test/mohawk.bats | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/mohawk.spec b/mohawk.spec index a84fe25..d870cea 100644 --- a/mohawk.spec +++ b/mohawk.spec @@ -8,7 +8,7 @@ %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: %{repo} -Version: 0.27.0 +Version: 0.27.1 Release: 1%{?dist} Summary: Time series metric data storage License: Apache @@ -46,7 +46,7 @@ install -p -m 0755 ./mohawk %{buildroot}%{_bindir}/mohawk %{_bindir}/mohawk %changelog -* Wed Dec 6 2017 Yaacov Zamir 0.27.0-1 +* Wed Dec 6 2017 Yaacov Zamir 0.27.1-1 - Add min max to memory storage stats * Wed Dec 6 2017 Yaacov Zamir 0.26.2-7 diff --git a/src/cli/README.md b/src/cli/README.md index 08d885b..dfc729f 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.0 +Mohawk version: 0.27.1 ``` 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.0 + 0.27.1 Author: Yaacov Zamir diff --git a/src/server/server.go b/src/server/server.go index 96972f2..b2000fe 100644 --- a/src/server/server.go +++ b/src/server/server.go @@ -39,7 +39,7 @@ import ( ) // VER the server version -const VER = "0.27.0" +const VER = "0.27.1" // defaults const defaultAPI = "0.21.0" diff --git a/test/mohawk.bats b/test/mohawk.bats index 606ca14..0ee465e 100755 --- a/test/mohawk.bats +++ b/test/mohawk.bats @@ -34,10 +34,10 @@ wait_for_alert() { [ "$status" -eq 0 ] } -@test "Mohawk is installed in version 0.27.0" { +@test "Mohawk is installed in version 0.27.1" { run mohawk --version - [[ "$output" =~ "0.27.0" ]] + [[ "$output" =~ "0.27.1" ]] } @test "Server should be available" {