Skip to content

Commit 51cea8e

Browse files
committed
Prepare v1.0 release
1 parent e318f78 commit 51cea8e

File tree

6 files changed

+14
-7
lines changed

6 files changed

+14
-7
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
language: go
22

33
go:
4-
- "1.11"
54
- "1.12"
5+
- "1.13"
6+
- "1.14"
67
- "master"
78

89
matrix:
@@ -11,7 +12,6 @@ matrix:
1112
fast_finish: true
1213

1314
script:
14-
- go vet ./...
1515
- go test -v -tags=test -race -coverprofile=coverage.txt -covermode=atomic ./...
1616

1717
after_success:

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ This repository contains a **Go** library for generating such IDs.
1414
```bash
1515
go get -u github.com/muyo/sno
1616
```
17-
### Status
18-
19-
**Nearing stable** - spec and API *may* fluctuate until **a 1.0 tag expected around 2019/07**.
2017

2118
### Features
2219

cmd/sno/go.mod

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module github.com/muyo/sno/cmd/sno
2+
3+
go 1.14
4+
5+
require github.com/muyo/sno v1.0.0
6+
require github.com/muyo/rush v0.0.0-20200227160314-2d77be2a525b
7+
8+
replace github.com/muyo/sno => ../../

cmd/sno/go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github.com/muyo/rush v0.0.0-20200227160314-2d77be2a525b h1:PfRvR7nHUUuz5hf9m0ironGBFOC4lyApPtkp0Lh5GF4=
2+
github.com/muyo/rush v0.0.0-20200227160314-2d77be2a525b/go.mod h1:4zPkqWZT3vdQAqQtSTbhb1GXRMF0ZRioeH+6ffeyI/c=

cmd/sno/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
const (
8-
ver = "1.0.0-dev"
8+
ver = "1.0.0"
99
)
1010

1111
func version() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module github.com/muyo/sno
22

3-
go 1.12
3+
go 1.14

0 commit comments

Comments
 (0)