Skip to content

Commit

Permalink
Merge pull request #8 from mozillazg/develop
Browse files Browse the repository at this point in the history
v0.2.0
  • Loading branch information
mozillazg authored May 30, 2018
2 parents 1ef9db2 + ac12eb2 commit d4882a5
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ language: go
go:
- 1.8
- 1.9
- '1.10'

sudo: false

install:
- go get .
- go build
- ./zkcli -version
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog


## [0.2.0] (2018-05-30)

### New Features

* Add `-version` to show version info ([add69127e](https://github.com/let-us-go/zkcli/commit/add69127e15a855f934629ef437286d416122fc8))

```
$ zkcli -version
Version: 0.2.0
Git commit: 9fd746b
Built: 2018-05-30T13:44:21+0000
```

### Internal changes

* Remove unnecessary qiniupkg ([1c33d63f590](https://github.com/let-us-go/zkcli/commit/1c33d63f590598c166ef0fcb4eb6554ca8bdee1c))
* Close connection before exit ([4c5d6a4d](https://github.com/let-us-go/zkcli/commit/4c5d6a4dc16d28deec01df6c873e69b27b985f61))
* Ignored with the suffix slash of zpath when completion ([#7](https://github.com/let-us-go/zkcli/pull/7))


## 0.1.0 (2017-12-23)

* Initial Release


[0.2.0]: https://github.com/let-us-go/zkcli/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
var gitCommit = "unknown"
var built = "unknown"

const version = "0.1.0"
const version = "0.2.0"

func main() {
servers := flag.String("s", "127.0.0.1:2181", "Servers")
Expand Down

0 comments on commit d4882a5

Please sign in to comment.