diff --git a/.travis.yml b/.travis.yml index 254474f..a03382f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ cache: bundler rvm: - 2.5.8 - 2.6.6 - - 2.7.1 + - 2.7.2 before_install: - gem install bundler install: bundle update --jobs=3 --retry=3 diff --git a/CHANGELOG.md b/CHANGELOG.md index b5ddc4e..abae13e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ## Unreleased +## 3.0.0 + * New: Regional API autoscalers endpoints * New: User#stop_free_trial method diff --git a/README.md b/README.md index 8cc4c7e..a68e298 100644 --- a/README.md +++ b/README.md @@ -10,15 +10,10 @@ will therefore be `3.x.x`. You can check the version 2 at [the v2 branch of this repository](https://github.com/Scalingo/scalingo-ruby-api/tree/v2) -### The road to 3.0.0 - -This gem is still in beta version, but its API should not change a lot until a final release. -[This issue tracks the remaining work](https://github.com/Scalingo/scalingo-ruby-api/issues/13). - ## Installation ```ruby -gem "scalingo", "3.0.0.beta.2" +gem "scalingo", "3.0.0" ``` And then execute: diff --git a/lib/scalingo/version.rb b/lib/scalingo/version.rb index 11a2bab..f464059 100644 --- a/lib/scalingo/version.rb +++ b/lib/scalingo/version.rb @@ -1,3 +1,3 @@ module Scalingo - VERSION = "3.0.0.beta.3" + VERSION = "3.0.0" end