diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1026ff38..ddadf7b1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG
+
+## [v0.17.2] - 2024-03-07
+### Features
+- add an option to output test summary at last ([#395](https://github.com/zoncoen/scenarigo/issues/395))
+
## [v0.17.1] - 2024-02-26
### Bug Fixes
@@ -402,6 +407,7 @@ change protocl.Protocol interface
- first release
+[v0.17.2]: https://github.com/zoncoen/scenarigo/compare/v0.17.1...v0.17.2
[v0.17.1]: https://github.com/zoncoen/scenarigo/compare/v0.17.0...v0.17.1
[v0.17.0]: https://github.com/zoncoen/scenarigo/compare/v0.16.2...v0.17.0
[v0.16.2]: https://github.com/zoncoen/scenarigo/compare/v0.16.1...v0.16.2
diff --git a/README.md b/README.md
index 87df0af5..f4fabcf2 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ steps:
### go install command (recommend)
```shell
-$ go install github.com/zoncoen/scenarigo/cmd/scenarigo@v0.17.1
+$ go install github.com/zoncoen/scenarigo/cmd/scenarigo@v0.17.2
```
### from release page
diff --git a/version/version.go b/version/version.go
index 52d593cd..684ddba8 100644
--- a/version/version.go
+++ b/version/version.go
@@ -6,7 +6,7 @@ import (
)
var (
- version = "0.17.1"
+ version = "0.17.2"
revision = "dev"
info, ok = debug.ReadBuildInfo()
)