Skip to content

Commit b94e044

Browse files
vjanellecbroglie
authored andcommitted
Change minimum golang to 1.10
1 parent c027192 commit b94e044

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,9 @@ language: go
33

44
matrix:
55
include:
6-
- go: 1.8.x
7-
- go: 1.9.x
86
- go: 1.10.x
97
- go: 1.11.x
108
- go: master
11-
- go: 1.8.1
129
os: osx
1310
env: BUILD_TAGS=
1411
allow_failures:

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
CFSSL is CloudFlare's PKI/TLS swiss army knife. It is both a command line
1010
tool and an HTTP API server for signing, verifying, and bundling TLS
11-
certificates. It requires Go 1.8+ to build.
11+
certificates. It requires Go 1.10+ to build.
1212

1313
Note that certain linux distributions have certain algorithms removed
1414
(RHEL-based distributions in particular), so the golang from the
@@ -30,7 +30,7 @@ CFSSL consists of:
3030
### Building
3131

3232
Building cfssl requires a
33-
[working Go 1.8+ installation](http://golang.org/doc/install) and a
33+
[working Go 1.10+ installation](http://golang.org/doc/install) and a
3434
properly set `GOPATH`.
3535

3636
```
@@ -62,7 +62,7 @@ You can set the `GOOS` and `GOARCH` environment variables to have Go cross compi
6262
### Installation
6363

6464
Installation requires a
65-
[working Go 1.8+ installation](http://golang.org/doc/install) and a
65+
[working Go 1.10+ installation](http://golang.org/doc/install) and a
6666
properly set `GOPATH`.
6767

6868
```
@@ -238,7 +238,10 @@ the key request as a JSON file. This file should follow the form:
238238
{
239239
"hosts": [
240240
"example.com",
241-
"www.example.com"
241+
"www.example.com",
242+
"https://www.example.com",
243+
"jdoe@example.com",
244+
"127.0.0.1"
242245
],
243246
"key": {
244247
"algo": "rsa",

0 commit comments

Comments
 (0)