diff --git a/CHANGELOG.md b/CHANGELOG.md index 434d4e74..d4f09717 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # CHANGELOG -## v3.0.6 +## v3.1.0 + +Adding support to the agent availabilities API endpoints. -Adding support to the agent availabilities API endpoints +## v3.0.6 Adding multiple Gemfile and Gemfile.lock files for differen Ruby versions so that Snyk can scan the repo for vulnerabilities. diff --git a/README.md b/README.md index 868e5fd0..39b10fcd 100644 --- a/README.md +++ b/README.md @@ -485,7 +485,7 @@ bundle exec rubocop # Runs the lint (use `--fix` for autocorrect) 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 exec bump:patch # 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 c583dcba..9111af91 100644 --- a/lib/zendesk_api/version.rb +++ b/lib/zendesk_api/version.rb @@ -1,3 +1,3 @@ module ZendeskAPI - VERSION = "3.0.6" + VERSION = "3.1.0" end