diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 066ac6e2..7023b21f 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,9 +1,12 @@ # Release History +## v0.5.0 (2022-01-06) + +- feat: support creating and calling custom functions with [go plugin](https://pkg.go.dev/plugin) + ## v0.4.0 (2022-01-05) - feat: implement `parameterize` mechanism for data driven -- feat: support creating and calling custom functions with [go plugin](https://pkg.go.dev/plugin) - feat: add multiple builtin assertion methods and builtin functions ## v0.3.1 (2021-12-30) diff --git a/internal/version/init.go b/internal/version/init.go index 462025a5..8b4b8520 100644 --- a/internal/version/init.go +++ b/internal/version/init.go @@ -1,3 +1,3 @@ package version -const VERSION = "v0.4.0" +const VERSION = "v0.5.0"