From c2917b1efd7692e1085b7b30729e0471c635464e Mon Sep 17 00:00:00 2001 From: zoncoen Date: Thu, 15 Dec 2022 16:05:35 +0900 Subject: [PATCH] release v0.13.1 --- CHANGELOG.md | 7 ++++++- README.md | 2 +- version/version.go | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d0350d76..c6b0f7a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # CHANGELOG + +## [v0.13.1] - 2022-12-15 +- bump up the version of dependent modules + -## [v0.13.0] - 2022-12-07 +## [v0.13.0] - 2022-12-08 ### Bug Fixes - enable to specify report paths by absolute path - fix generate CREDITS workflow @@ -286,6 +290,7 @@ change protocl.Protocol interface - first release +[v0.13.1]: https://github.com/zoncoen/scenarigo/compare/v0.13.0...v0.13.1 [v0.13.0]: https://github.com/zoncoen/scenarigo/compare/v0.12.8...v0.13.0 [v0.12.8]: https://github.com/zoncoen/scenarigo/compare/v0.12.7...v0.12.8 [v0.12.7]: https://github.com/zoncoen/scenarigo/compare/v0.12.6...v0.12.7 diff --git a/README.md b/README.md index bdcbb599..a1761000 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ steps: ### go install command (recommend) ```shell -$ go install github.com/zoncoen/scenarigo/cmd/scenarigo@v0.13.0 +$ go install github.com/zoncoen/scenarigo/cmd/scenarigo@v0.13.1 ``` ### from release page diff --git a/version/version.go b/version/version.go index 6003a749..8fdc5f4c 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ import ( ) var ( - version = "0.13.0" + version = "0.13.1" revision = "dev" info, ok = debug.ReadBuildInfo() )