diff --git a/CHANGELOG.md b/CHANGELOG.md index e1a14d1..7e0a8ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,21 @@ 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.0] - 2022-03-02 ### Added +- Test BuilderGenerator with generator\_spec (#64) +- Add HintComponent and ErrorMessageComponent (#98) - Add `validation_context` option to `Form::Builder` (#101) - Add `validators` helper to `FieldComponent` (#101) - Add `optional?` and `required?` helpers to `FieldComponent` (#101) - Add `label_text` helper (#103) - Add `field_id` helper, backported from Rails 7.0 (#104) - Add `weekday_select` helper (#105) +- Add README section about supported helpers (#106) +- Setup zeitwerk (#107) +- Add documentation for tests (#108) ## [0.1.3] - 2022-01-11 ### Fixed @@ -57,7 +65,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.1.3...HEAD +[Unreleased]: https://github.com/pantographe/view_component-form/compare/v0.2.0...HEAD +[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 [0.1.2]: https://github.com/pantographe/view_component-form/compare/v0.1.1...v0.1.2 [0.1.1]: https://github.com/pantographe/view_component-form/compare/v0.1.0...v0.1.1 diff --git a/Gemfile.lock b/Gemfile.lock index ab6e441..9b2ce90 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - view_component-form (0.1.3) + view_component-form (0.2.0) actionview (>= 6.0.0, < 7.1) activesupport (>= 6.0.0, < 7.1) view_component (>= 2.34.0, < 3.0) diff --git a/lib/view_component/form/version.rb b/lib/view_component/form/version.rb index a4ea76e..d61d37f 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.1.3" + VERSION = "0.2.0" end end