diff --git a/CHANGELOG.md b/CHANGELOG.md index c7b40b93..a747bf51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v3.0.6 + +Adding multiple Gemfile and Gemfile.lock files for differen Ruby versions so that Snyk can scan the repo for vulnerabilities. + ## v3.0.5 Adding CBP support to more endpoints. please see `cbp_support_spec.rb` for the complete list. diff --git a/README.md b/README.md index ae461742..70e32e60 100644 --- a/README.md +++ b/README.md @@ -454,7 +454,7 @@ BUNDLE_GEMFILE=Gemfile.2.7 bundle exec rubocop # Runs the lint (use `--fix` for 1. From updated master: `git checkout -b bump-vX.X.X`, according to [SemVer](https://semver.org) 2. Ensure the CHANGELOG is correct and updated, this is your last opportunity -3. Execute `bundle exec bump patch --tag # minor|major`, this bumps the version in a new commit, and adds the relative git tag +3. Execute `BUNDLE_GEMFILE=Gemfile.2.7 bundle exec bump patch --tag # minor|major`, this bumps the version in a new commit, and adds the relative git tag 4. Push to GitHub `git push origin vX.X.X -u && git push --tags` 5. Raise a PR ([example](https://github.com/zendesk/zendesk_api_client_rb/pull/540)) including the code diff ([example](https://github.com/zendesk/zendesk_api_client_rb/compare/v2.0.1...v3.0.0.rc1)) 6. Get it approved and merged diff --git a/lib/zendesk_api/version.rb b/lib/zendesk_api/version.rb index c13523a4..c583dcba 100644 --- a/lib/zendesk_api/version.rb +++ b/lib/zendesk_api/version.rb @@ -1,3 +1,3 @@ module ZendeskAPI - VERSION = "3.0.5" + VERSION = "3.0.6" end