diff --git a/CHANGELOG.md b/CHANGELOG.md index 934b3737..7178ca8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [5.2.0] - 2024-05-04 - Error explicitly that OpenAPI 3.1+ isn't supported #418 ## [5.1.0] - 2024-01-16 diff --git a/README.md b/README.md index 48e5b2c1..68855ddc 100644 --- a/README.md +++ b/README.md @@ -510,7 +510,7 @@ bundle exec ruby -Ilib -Itest test/router_test.rb -n /prefix/ ## Release -1. Update the version in `committee.gemspec` as appropriate for [semantic +1. Update the version in `lib/committee/version.rb` as appropriate for [semantic versioning](http://semver.org) and add details to `CHANGELOG.md`. 2. Commit those changes. Use a commit message like `Bump version to 1.2.3`. 3. Run the `release` task: diff --git a/lib/committee/version.rb b/lib/committee/version.rb index b1165bc4..7ae33ef6 100644 --- a/lib/committee/version.rb +++ b/lib/committee/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Committee - VERSION = '5.1.0'.freeze + VERSION = '5.2.0'.freeze end