From ad35ae558627de6413af7eea2a30a8dc3fac7b57 Mon Sep 17 00:00:00 2001 From: Yaacov Zamir Date: Tue, 26 Jun 2018 23:49:12 +0300 Subject: [PATCH] bump bugfix version (#175) --- mohawk.spec | 5 ++++- src/cli/README.md | 4 ++-- src/server/server.go | 2 +- test/mohawk.bats | 4 ++-- 4 files changed, 9 insertions(+), 6 deletions(-) diff --git a/mohawk.spec b/mohawk.spec index 16918c8..1108738 100644 --- a/mohawk.spec +++ b/mohawk.spec @@ -8,7 +8,7 @@ %global shortcommit %(c=%{commit}; echo ${c:0:7}) Name: %{repo} -Version: 0.33.2 +Version: 0.33.3 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 Jun 26 2018 Yaacov Zamir 0.33.3-1 +- Do not allow .. in static files path + * Sat Feb 17 2018 Yaacov Zamir 0.33.2-1 - Set exports http header to text - Do not export old data diff --git a/src/cli/README.md b/src/cli/README.md index c581c5c..73ef367 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.33.2 +Mohawk version: 0.33.3 ``` 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.33.2 + 0.33.3 Author: Yaacov Zamir diff --git a/src/server/server.go b/src/server/server.go index b108b50..958f0ca 100644 --- a/src/server/server.go +++ b/src/server/server.go @@ -39,7 +39,7 @@ import ( ) // VER the server version -const VER = "0.33.2" +const VER = "0.33.3" // defaults const defaultAPI = "0.21.0" diff --git a/test/mohawk.bats b/test/mohawk.bats index ce88d2c..7377d79 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.33.2" { +@test "Mohawk is installed in version 0.33.3" { run mohawk --version - [[ "$output" =~ "0.33.2" ]] + [[ "$output" =~ "0.33.3" ]] } @test "Server should be available" {