Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacov committed Jul 16, 2017
1 parent c963b8e commit bc40d39
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions benchmark/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ $ date; time ./benchmark.py; date
```
```
Tue Jun 27 23:41:45 IDT 2017
{u'MohawkVersion': u'0.18.1', u'MohawkBackend': u'Backend-Mongo', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
{u'MohawkVersion': u'0.19.2', u'MohawkBackend': u'Backend-Mongo', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
real 0m4.885s
user 0m1.257s
Expand Down Expand Up @@ -78,7 +78,7 @@ $ date; time ./benchmark.py; date
```
```
Tue Jun 27 23:43:36 IDT 2017
{u'MohawkVersion': u'0.18.1', u'MohawkBackend': u'Backend-Sqlite3', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
{u'MohawkVersion': u'0.19.2', u'MohawkBackend': u'Backend-Sqlite3', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
real 0m14.471s
user 0m1.144s
Expand Down Expand Up @@ -128,7 +128,7 @@ $ date; time ./benchmark.py; date
```
```
Tue Jun 27 23:46:50 IDT 2017
{u'MohawkVersion': u'0.18.1', u'MohawkBackend': u'Backend-Memory', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
{u'MohawkVersion': u'0.19.2', u'MohawkBackend': u'Backend-Memory', u'MetricsService': u'STARTED', u'Implementation-Version': u'0.21.0'}
real 0m2.011s
user 0m1.108s
Expand Down
2 changes: 1 addition & 1 deletion examples/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.18.1
Mohawk version: 0.19.2
```

The `-h` flag will print out a help text, that list the command line arguments.
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ import (
)

// VER the server version
const VER = "0.18.1"
const VER = "0.19.2"

// defaults
const defaultPort = 8080
Expand Down
2 changes: 1 addition & 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.18.1
Version: 0.19.2
Release: 6%{?dist}
Summary: Mohawk metric data storage
License: Apache
Expand Down
4 changes: 2 additions & 2 deletions test/mohawk.bats
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ kill_mohawk() {
[ "$status" -eq 0 ]
}

@test "Mohawk is installed in version 0.18.1" {
@test "Mohawk is installed in version 0.19.2" {
run mohawk -version

[[ "$output" =~ "0.18.1" ]]
[[ "$output" =~ "0.19.2" ]]
}

@test "Server should be available" {
Expand Down

0 comments on commit bc40d39

Please sign in to comment.