Skip to content

Commit 4f4489f

Browse files
Merge pull request #824 from travis-ci/bug-fix-cycle-8
Bug fix cycle 8
2 parents 7345257 + c6aea1d commit 4f4489f

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -2066,6 +2066,14 @@ See https://github.com/travis-ci/travis.rb/issues/768#issuecomment-700220351 for
20662066

20672067
## Version History
20682068

2069+
### 1.11.1
2070+
2071+
* Fix `travis sshkey --generate` https://github.com/travis-ci/travis.rb/pull/820
2072+
2073+
### 1.11.0
2074+
2075+
* Removed authentication with password https://github.com/travis-ci/travis.rb/pull/811
2076+
20692077
### 1.10.1
20702078

20712079
* Fix `travis monitor` command https://github.com/travis-ci/travis.rb/pull/770

lib/travis/cli/sshkey.rb

-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ def generate_key
5656
github.with_token do |token|
5757
access_token = github_auth(token)
5858
end
59-
session.access_token = nil
6059
unless access_token
6160
raise Travis::Client::GitHubLoginFailed, "all GitHub tokens given were invalid"
6261
end

lib/travis/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Travis
2-
VERSION = '1.11.0'
2+
VERSION = '1.11.1'
33
end

travis.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Gem::Specification.new do |s|
33
# general info
44
s.name = "travis"
5-
s.version = "1.11.0"
5+
s.version = "1.11.1"
66
s.required_ruby_version = ">= 2.3.0"
77
s.description = "CLI and Ruby client library for Travis CI"
88
s.homepage = "https://github.com/travis-ci/travis.rb"

0 commit comments

Comments
 (0)