Skip to content

Commit be1b45f

Browse files
authored
Merge pull request #53 from essentialkaos/develop
Version 2.4.1
2 parents 381edeb + 0f70cb4 commit be1b45f

6 files changed

Lines changed: 28 additions & 26 deletions

File tree

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
language: go
22

33
go:
4-
- 1.9.x
5-
- 1.10.x
64
- 1.11.x
75
- 1.12.x
6+
- 1.13.x
87
- tip
98

109
os:
@@ -30,7 +29,7 @@ matrix:
3029
before_install:
3130
- docker pull "$IMAGE"
3231
- wget https://kaos.sh/perfecto/perfecto-docker
33-
- wget -O hadolint https://github.com/hadolint/hadolint/releases/download/v1.17.1/hadolint-Linux-x86_64
32+
- wget -O hadolint https://github.com/hadolint/hadolint/releases/download/v1.17.2/hadolint-Linux-x86_64
3433
- chmod +x perfecto-docker
3534
- chmod +x hadolint
3635
- ./hadolint --version

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
go get -d -v pkg.re/essentialkaos/sslscan.v11
3232

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

4646
################################################################################

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Before the initial install allows git to use redirects for [pkg.re](https://gith
2929
git config --global http.https://pkg.re.followRedirects true
3030
```
3131

32-
To build the SSLScan Client from scratch, make sure you have a working Go 1.9+ workspace ([instructions](https://golang.org/doc/install)), then:
32+
To build the SSLScan Client from scratch, make sure you have a working Go 1.11+ workspace ([instructions](https://golang.org/doc/install)), then:
3333

3434
```
3535
go get github.com/essentialkaos/sslcli

cli/cli.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ 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/fsutil"
23-
"pkg.re/essentialkaos/ek.v10/options"
24-
"pkg.re/essentialkaos/ek.v10/strutil"
25-
"pkg.re/essentialkaos/ek.v10/usage"
26-
"pkg.re/essentialkaos/ek.v10/usage/completion/bash"
27-
"pkg.re/essentialkaos/ek.v10/usage/completion/fish"
28-
"pkg.re/essentialkaos/ek.v10/usage/completion/zsh"
29-
"pkg.re/essentialkaos/ek.v10/usage/update"
20+
"pkg.re/essentialkaos/ek.v11/fmtc"
21+
"pkg.re/essentialkaos/ek.v11/fmtutil"
22+
"pkg.re/essentialkaos/ek.v11/fsutil"
23+
"pkg.re/essentialkaos/ek.v11/options"
24+
"pkg.re/essentialkaos/ek.v11/strutil"
25+
"pkg.re/essentialkaos/ek.v11/usage"
26+
"pkg.re/essentialkaos/ek.v11/usage/completion/bash"
27+
"pkg.re/essentialkaos/ek.v11/usage/completion/fish"
28+
"pkg.re/essentialkaos/ek.v11/usage/completion/zsh"
29+
"pkg.re/essentialkaos/ek.v11/usage/update"
3030

3131
"pkg.re/essentialkaos/sslscan.v11"
3232
)
@@ -35,7 +35,7 @@ import (
3535

3636
const (
3737
APP = "SSLScan Client"
38-
VER = "2.4.0"
38+
VER = "2.4.1"
3939
DESC = "Command-line client for the SSL Labs API"
4040
)
4141

cli/details.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ import (
1212
"strings"
1313
"time"
1414

15-
"pkg.re/essentialkaos/ek.v10/fmtc"
16-
"pkg.re/essentialkaos/ek.v10/fmtutil"
17-
"pkg.re/essentialkaos/ek.v10/pluralize"
18-
"pkg.re/essentialkaos/ek.v10/sliceutil"
19-
"pkg.re/essentialkaos/ek.v10/strutil"
20-
"pkg.re/essentialkaos/ek.v10/timeutil"
15+
"pkg.re/essentialkaos/ek.v11/fmtc"
16+
"pkg.re/essentialkaos/ek.v11/fmtutil"
17+
"pkg.re/essentialkaos/ek.v11/pluralize"
18+
"pkg.re/essentialkaos/ek.v11/sliceutil"
19+
"pkg.re/essentialkaos/ek.v11/strutil"
20+
"pkg.re/essentialkaos/ek.v11/timeutil"
2121

2222
"pkg.re/essentialkaos/sslscan.v11"
2323
)

common/sslcli.spec

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
Summary: Pretty awesome command-line client for public SSLLabs API
4646
Name: sslcli
47-
Version: 2.4.0
47+
Version: 2.4.1
4848
Release: 0%{?dist}
4949
Group: Applications/System
5050
License: EKOL
@@ -54,7 +54,7 @@ Source0: https://source.kaos.st/%{name}/%{name}-%{version}.tar.bz2
5454

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

57-
BuildRequires: golang >= 1.12
57+
BuildRequires: golang >= 1.13
5858

5959
Provides: %{name} = %{version}-%{release}
6060

@@ -119,6 +119,9 @@ fi
119119
################################################################################
120120

121121
%changelog
122+
* Sat Oct 19 2019 Anton Novojilov <andy@essentialkaos.com> - 2.4.1-0
123+
- ek package updated to the latest version
124+
122125
* Tue Jul 09 2019 Anton Novojilov <andy@essentialkaos.com> - 2.4.0-0
123126
- Added '--max-left/-M' for checking certificate expiry date
124127
- Added completions for bash, fish and zsh

0 commit comments

Comments
 (0)