Skip to content

Commit

Permalink
Merge pull request #156 from yaacov/bump-v
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
yaacov authored Jan 11, 2018
2 parents 32809dc + 33f14f5 commit 4335ee0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 5 additions & 1 deletion mohawk.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
%global shortcommit %(c=%{commit}; echo ${c:0:7})

Name: %{repo}
Version: 0.31.1
Version: 0.32.1
Release: 1%{?dist}
Summary: Time series metric data storage
License: Apache
Expand Down Expand Up @@ -47,6 +47,10 @@ install -p -m 0755 ./mohawk %{buildroot}%{_bindir}/mohawk
%{_bindir}/mohawk

%changelog
* Tue Jan 11 2018 Yaacov Zamir <[email protected]> 0.32.1-1
- Add error handlers to api calls
- Alerts accept a list of metrics or a tags regex

* Tue Jan 2 2018 Yaacov Zamir <[email protected]> 0.31.1-1
- Storage default to ASC insdead of DESC
- Default limit changed from 2000 to 20000
Expand Down
4 changes: 2 additions & 2 deletions src/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ When installed, run using the command line ``mohawk``
```bash
mohawk --version

Mohawk version: 0.31.1
Mohawk version: 0.32.1
```

The `-h` flag will print out a help text, that list the command line arguments.
Expand All @@ -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.31.1
0.32.1
Author:
Yaacov Zamir <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion src/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import (
)

// VER the server version
const VER = "0.31.1"
const VER = "0.32.1"

// defaults
const defaultAPI = "0.21.0"
Expand Down
4 changes: 2 additions & 2 deletions test/mohawk.bats
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ wait_for_alert() {
[ "$status" -eq 0 ]
}

@test "Mohawk is installed in version 0.31.1" {
@test "Mohawk is installed in version 0.32.1" {
run mohawk --version

[[ "$output" =~ "0.31.1" ]]
[[ "$output" =~ "0.32.1" ]]
}

@test "Server should be available" {
Expand Down

0 comments on commit 4335ee0

Please sign in to comment.