diff --git a/CHANGELOG.md b/CHANGELOG.md
index 48d505a3..5620aa22 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# CHANGELOG
+
+## [v0.16.2] - 2023-11-02
+### Bug Fixes
+- **template:** don't convert int to string
+
## [v0.16.1] - 2023-11-01
### Features
@@ -370,6 +375,7 @@ change protocl.Protocol interface
- first release
+[v0.16.2]: https://github.com/zoncoen/scenarigo/compare/v0.16.1...v0.16.2
[v0.16.1]: https://github.com/zoncoen/scenarigo/compare/v0.16.0...v0.16.1
[v0.16.0]: https://github.com/zoncoen/scenarigo/compare/v0.15.1...v0.16.0
[v0.15.1]: https://github.com/zoncoen/scenarigo/compare/v0.15.0...v0.15.1
diff --git a/README.md b/README.md
index 3ac2bee4..cf1ba194 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.16.1
+$ go install github.com/zoncoen/scenarigo/cmd/scenarigo@v0.16.2
```
### from release page
diff --git a/version/version.go b/version/version.go
index a5bd2a00..ad4c0bcc 100644
--- a/version/version.go
+++ b/version/version.go
@@ -6,7 +6,7 @@ import (
)
var (
- version = "0.16.1"
+ version = "0.16.2"
revision = "dev"
info, ok = debug.ReadBuildInfo()
)