diff --git a/README.md b/README.md index 89cdaac4..34ba3837 100644 --- a/README.md +++ b/README.md @@ -984,6 +984,15 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis ## Version History +**1.3.0** (July 20, 2013) + +* Add `travis setup [heroku|openshift|nodejitsu|sauce_connect]` +* Add `travis branches` +* Add Repository#branch and Repository#branches +* Improve `--help` +* Improve error message when calling `travis logs` with a matrix build number +* Check if travis gem is up to date from time to time (CLI only, not when used as library) + **1.2.8** (July 19, 2013) * Make pubkey print out key in ssh encoding, add --pem flag for old format diff --git a/lib/travis/version.rb b/lib/travis/version.rb index f8418522..ec79c1d5 100644 --- a/lib/travis/version.rb +++ b/lib/travis/version.rb @@ -1,3 +1,3 @@ module Travis - VERSION = '1.2.8' + VERSION = '1.3.0' end diff --git a/travis.gemspec b/travis.gemspec index 1107dc17..681d6b32 100644 --- a/travis.gemspec +++ b/travis.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| # general infos s.name = "travis" - s.version = "1.2.8" + s.version = "1.3.0" s.description = "CLI and Ruby client library for Travis CI" s.homepage = "https://github.com/travis-ci/travis" s.summary = "Travis CI client" @@ -46,6 +46,7 @@ Gem::Specification.new do |s| "lib/travis/cacert.pem", "lib/travis/cli.rb", "lib/travis/cli/api_command.rb", + "lib/travis/cli/branches.rb", "lib/travis/cli/command.rb", "lib/travis/cli/console.rb", "lib/travis/cli/disable.rb", @@ -62,6 +63,7 @@ Gem::Specification.new do |s| "lib/travis/cli/raw.rb", "lib/travis/cli/repo_command.rb", "lib/travis/cli/restart.rb", + "lib/travis/cli/setup.rb", "lib/travis/cli/show.rb", "lib/travis/cli/status.rb", "lib/travis/cli/sync.rb",