diff --git a/CHANGELOG.md b/CHANGELOG.md index 486b1f9db..f1c618e83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## main +## 2.32.0 + * Enable previews by default in test environment. *Edouard Piron* @@ -22,6 +24,10 @@ *Matheus Richard* +* Are you interested in building the future of ViewComponent? GitHub is looking to hire a Senior Engineer to work on Primer ViewComponents and ViewComponent. Apply here: [US/Canada](https://github.com/careers) / [Europe](https://boards.greenhouse.io/github/jobs/3132294). Feel free to reach out to joelhawksley@github.com with any questions. + + *Joel Hawksley* + ## 2.31.1 * Fix `DEPRECATION WARNING: before_render_check` when compiling `ViewComponent::Base` diff --git a/Gemfile.lock b/Gemfile.lock index e5ffa2754..16fac59cc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,7 +87,7 @@ GIT PATH remote: . specs: - view_component (2.31.1) + view_component (2.32.0) activesupport (>= 5.0.0, < 7.0) GEM diff --git a/lib/view_component/version.rb b/lib/view_component/version.rb index b520444d9..9f0f9806f 100644 --- a/lib/view_component/version.rb +++ b/lib/view_component/version.rb @@ -3,8 +3,8 @@ module ViewComponent module VERSION MAJOR = 2 - MINOR = 31 - PATCH = 1 + MINOR = 32 + PATCH = 0 STRING = [MAJOR, MINOR, PATCH].join(".") end