Skip to content

Commit f3735d8

Browse files
authored
Merge pull request #14 from essentialkaos/develop
Version 3.0.1
2 parents 4326411 + 517ec4b commit f3735d8

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

common/redis-latency-monitor.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
Summary: Tiny Redis client for latency measurement
1212
Name: redis-latency-monitor
13-
Version: 3.0.0
13+
Version: 3.0.1
1414
Release: 0%{?dist}
1515
Group: Applications/System
1616
License: EKOL
@@ -58,6 +58,9 @@ rm -rf %{buildroot}
5858
###############################################################################
5959

6060
%changelog
61+
* Thu Dec 21 2017 Anton Novojilov <[email protected]> - 3.0.1-0
62+
- Minor UI fixes
63+
6164
* Tue Dec 19 2017 Anton Novojilov <[email protected]> - 3.0.0-0
6265
- Fixed bug with percentile calculation
6366
- ek package updated to latest version

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tiny Redis client for latency measurement. Utility show `PING` command latency o
44

55
### Usage demo
66

7-
[![demo](https://gh.kaos.io/redis-latency-monitor-210.gif)](#usage-demo)
7+
[![demo](https://gh.kaos.io/redis-latency-monitor-301.gif)](#usage-demo)
88

99
### Installation
1010

redis-latency-monitor.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434
// App info
3535
const (
3636
APP = "Redis Latency Monitor"
37-
VER = "3.0.0"
37+
VER = "3.0.1"
3838
DESC = "Tiny Redis client for latency measurement"
3939
)
4040

@@ -403,7 +403,7 @@ func createOutputTable() *table.Table {
403403
t.SetAlignments(
404404
table.ALIGN_RIGHT, table.ALIGN_RIGHT, table.ALIGN_RIGHT,
405405
table.ALIGN_RIGHT, table.ALIGN_RIGHT, table.ALIGN_RIGHT,
406-
table.ALIGN_RIGHT,
406+
table.ALIGN_RIGHT, table.ALIGN_RIGHT,
407407
)
408408

409409
return t

0 commit comments

Comments
 (0)