diff --git a/CHANGELOG.md b/CHANGELOG.md index a2b5c85..d1c1c2b 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.5] - 2023-05-01 ### Changed - Split `Form::Builder` into modules, to allow including only some modules instead of inheriting the whole class (#134) - Using the `Form::Builder` generator now creates the file in `app/helpers` by default, instead of `lib` previously, so that it's autoloaded by Rails without further configuration (#137) @@ -96,7 +99,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.4...HEAD +[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.2.5...HEAD +[0.2.5]: https://github.com/pantographe/view_component-form/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/pantographe/view_component-form/compare/v0.2.3...v0.2.4 [0.2.3]: https://github.com/pantographe/view_component-form/compare/v0.2.2...v0.2.3 [0.2.2]: https://github.com/pantographe/view_component-form/compare/v0.2.1...v0.2.2 diff --git a/Gemfile.lock b/Gemfile.lock index fc45438..ee8a594 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component-form (0.2.4) + view_component-form (0.2.5) actionview (>= 6.0.0, < 7.1) activesupport (>= 6.0.0, < 7.1) view_component (>= 2.34.0, < 4.0) diff --git a/lib/view_component/form/version.rb b/lib/view_component/form/version.rb index bfb402f..e4f3179 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.4" + VERSION = "0.2.5" end end