Skip to content

Commit 2be292a

Browse files
committed
ek package updated to the latest stable version
1 parent a479f61 commit 2be292a

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
################################################################################
22

3-
# This Makefile generated by GoMakeGen 1.1.0 using next command:
3+
# This Makefile generated by GoMakeGen 1.2.0 using next command:
44
# gomakegen .
55
#
66
# More info: https://kaos.sh/gomakegen
@@ -27,7 +27,7 @@ git-config: ## Configure git redirects for stable import path services
2727
git config --global http.https://pkg.re.followRedirects true
2828

2929
deps: git-config ## Download dependencies
30-
go get -d -v pkg.re/essentialkaos/ek.v10
30+
go get -d -v pkg.re/essentialkaos/ek.v11
3131

3232
fmt: ## Format source code with gofmt
3333
find . -name "*.go" -exec gofmt -s -w {} \;
@@ -40,6 +40,6 @@ help: ## Show this info
4040
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
4141
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[33m%-23s\033[0m %s\n", $$1, $$2}'
4242
@echo -e ''
43-
@echo -e '\033[90mGenerated by GoMakeGen 1.1.0\033[0m\n'
43+
@echo -e '\033[90mGenerated by GoMakeGen 1.2.0\033[0m\n'
4444

4545
################################################################################

common/redis-latency-monitor.spec

Lines changed: 5 additions & 2 deletions
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.1.0
13+
Version: 3.1.1
1414
Release: 0%{?dist}
1515
Group: Applications/System
1616
License: EKOL
@@ -20,7 +20,7 @@ Source0: https://source.kaos.st/%{name}/%{name}-%{version}.tar.bz2
2020

2121
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
2222

23-
BuildRequires: golang >= 1.12
23+
BuildRequires: golang >= 1.13
2424

2525
Provides: %{name} = %{version}-%{release}
2626

@@ -86,6 +86,9 @@ fi
8686
################################################################################
8787

8888
%changelog
89+
* Thu Oct 17 2019 Anton Novojilov <[email protected]> - 3.1.1-0
90+
- ek package updated to the latest stable version
91+
8992
* Thu Jun 13 2019 Anton Novojilov <[email protected]> - 3.1.0-0
9093
- ek package updated to the latest stable version
9194
- Added completion generation for bash, zsh and fish

redis-latency-monitor.go

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package main
22

33
// ////////////////////////////////////////////////////////////////////////////////// //
44
// //
5-
// Copyright (c) 2009-2018 ESSENTIAL KAOS //
5+
// Copyright (c) 2009-2019 ESSENTIAL KAOS //
66
// Essential Kaos Open Source License <https://essentialkaos.com/ekol> //
77
// //
88
// ////////////////////////////////////////////////////////////////////////////////// //
@@ -17,17 +17,17 @@ import (
1717
"strings"
1818
"time"
1919

20-
"pkg.re/essentialkaos/ek.v10/fmtc"
21-
"pkg.re/essentialkaos/ek.v10/fmtutil"
22-
"pkg.re/essentialkaos/ek.v10/fmtutil/table"
23-
"pkg.re/essentialkaos/ek.v10/log"
24-
"pkg.re/essentialkaos/ek.v10/mathutil"
25-
"pkg.re/essentialkaos/ek.v10/options"
26-
"pkg.re/essentialkaos/ek.v10/timeutil"
27-
"pkg.re/essentialkaos/ek.v10/usage"
28-
"pkg.re/essentialkaos/ek.v10/usage/completion/bash"
29-
"pkg.re/essentialkaos/ek.v10/usage/completion/fish"
30-
"pkg.re/essentialkaos/ek.v10/usage/completion/zsh"
20+
"pkg.re/essentialkaos/ek.v11/fmtc"
21+
"pkg.re/essentialkaos/ek.v11/fmtutil"
22+
"pkg.re/essentialkaos/ek.v11/fmtutil/table"
23+
"pkg.re/essentialkaos/ek.v11/log"
24+
"pkg.re/essentialkaos/ek.v11/mathutil"
25+
"pkg.re/essentialkaos/ek.v11/options"
26+
"pkg.re/essentialkaos/ek.v11/timeutil"
27+
"pkg.re/essentialkaos/ek.v11/usage"
28+
"pkg.re/essentialkaos/ek.v11/usage/completion/bash"
29+
"pkg.re/essentialkaos/ek.v11/usage/completion/fish"
30+
"pkg.re/essentialkaos/ek.v11/usage/completion/zsh"
3131

3232
"github.com/essentialkaos/redis-latency-monitor/stats"
3333
)
@@ -37,7 +37,7 @@ import (
3737
// App info
3838
const (
3939
APP = "Redis Latency Monitor"
40-
VER = "3.1.0"
40+
VER = "3.1.1"
4141
DESC = "Tiny Redis client for latency measurement"
4242
)
4343

0 commit comments

Comments
 (0)