From 5e269ffd2459715002f1da8bd70e6adfc288e7e4 Mon Sep 17 00:00:00 2001 From: Shoma Kokuryo Date: Fri, 24 Aug 2018 02:30:28 +0000 Subject: [PATCH] Bump version to 0.19 --- CHANGELOG.md | 12 +++++++++++- RELEASE.md | 3 ++- version.go | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73b98487..5a98cce9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [0.19] - 2018-08-24 + +### Added +- Support healthcheck and version endpoint (#97). + +### Chenged +- Support label on machines (#98). +- Modify BMC Type validation (#99). + ## [0.18] - 2018-08-14 ### Added @@ -31,7 +40,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Fix a bug that leaves files of deleted OS images (#86). [placemat]: https://github.com/cybozu-go/placemat -[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v0.18...HEAD +[Unreleased]: https://github.com/cybozu-go/sabakan/compare/v0.19...HEAD +[0.19]: https://github.com/cybozu-go/sabakan/compare/v0.18...v0.19 [0.18]: https://github.com/cybozu-go/sabakan/compare/v0.17...v0.18 [0.17]: https://github.com/cybozu-go/sabakan/compare/v0.16...v0.17 [0.16]: https://github.com/cybozu-go/sabakan/compare/v0.15...v0.16 diff --git a/RELEASE.md b/RELEASE.md index 9052c006..642f7b71 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -36,7 +36,8 @@ Bump version 1. Determine a new version number. Let it write `$VERSION`. 2. Checkout `master` branch. 3. Edit `CHANGELOG.md` for the new version ([example][]). -4. Commit the change and add a git tag, then push them. +4. Update `version.go` +5. Commit the change and add a git tag, then push them. ```console $ git commit -a -m "Bump version to $VERSION" diff --git a/version.go b/version.go index 4e3405f1..cba00804 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package sabakan // Version is sabakan version -const Version = "0.18" +const Version = "0.19"