diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d89d39..c18413a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +Nothing yet + +## [0.2.2] - 2022-03-23 ### Changed - Improve conditional ActionText support (#118) @@ -74,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Add CHANGELOG (#50) - Add CI (#2) -[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.2.1...HEAD +[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.2.2...HEAD +[0.2.2]: https://github.com/pantographe/view_component-form/compare/v0.2.1...v0.2.2 [0.2.1]: https://github.com/pantographe/view_component-form/compare/v0.2.0...v0.2.1 [0.2.0]: https://github.com/pantographe/view_component-form/compare/v0.1.3...v0.2.0 [0.1.3]: https://github.com/pantographe/view_component-form/compare/v0.1.2...v0.1.3 diff --git a/Gemfile.lock b/Gemfile.lock index 6d9990f..45bb6ac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component-form (0.2.1) + view_component-form (0.2.2) actionview (>= 6.0.0, < 7.1) activesupport (>= 6.0.0, < 7.1) view_component (>= 2.34.0, < 3.0) diff --git a/bin/release b/bin/release index 00820b3..d55971b 100755 --- a/bin/release +++ b/bin/release @@ -3,7 +3,7 @@ VERSION=$1 if [[ -z "$VERSION" ]]; then - echo "Version should be specified. Example: bin/release v1.0.0" + echo "Version should be specified. Example: bin/release 1.0.0" exit 1 fi diff --git a/lib/view_component/form/version.rb b/lib/view_component/form/version.rb index 95ea89a..619e99f 100644 --- a/lib/view_component/form/version.rb +++ b/lib/view_component/form/version.rb @@ -2,6 +2,6 @@ module ViewComponent module Form - VERSION = "0.2.1" + VERSION = "0.2.2" end end