travis 1.11.0 → 1.11.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd56aab41cadf71c5d3e17baa3e32ef92c12b47df8433885cd93bfcdeba0a3ac
4
- data.tar.gz: 31dfb62475ae626176823ce90347915da42e601c44f570cac6ee338bb4a923c1
3
+ metadata.gz: 23b3dc0540b49670c431ffd568978ef91fa3b35183d6ef538e6221997156f1c3
4
+ data.tar.gz: 8567e7548e471e46db65b1d2a4cbef54077ac4a7564c2cf54f67e0df79a3d299
5
5
  SHA512:
6
- metadata.gz: 1f3035ba8ccbf3031a84796f3d16ca3f88d93512a7250b71a3d6f773e19b95b4662ccf96ee350331b89403c437ce98f1ae3f921cb4ec2249f6529a13c51eb258
7
- data.tar.gz: c8277df2456d7e9386a6241804e91078a378014804073efaed2c5f6c91d75db8fe51ab4dd180f74cfe3242b4c4f3d55ccd0f04b6a2dbd89e2544b595e7fbfcc6
6
+ metadata.gz: 0f770678a593532d320783fb156685d980e81471c7d9d7327b89f181a881c1dc294fa40c3bd0632b38cbda0561688ae5365b312ab0b5a85623f32eb258fb469a
7
+ data.tar.gz: 20ced0690a572d0e8cab783661836422eae1a14c47641bb70317920bd015bbdb63cfe6ec2880e82c25e856ea3eea89bbe7ab9cf17fc6bf31cb2bfbf9f7ca2fb4
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # The Travis Client [![Build Status](https://travis-ci.com/travis-ci/travis.rb.svg?branch=master)](https://travis-ci.com/travis-ci/travis.rb)
2
2
 
3
- ![The Travis Mascot](http://about.travis-ci.org/images/travis-mascot-200px.png)
3
+ ![The Travis Mascot](https://about.travis-ci.org/images/travis-mascot-200px.png)
4
4
 
5
5
  The [travis gem](https://rubygems.org/gems/travis) includes both a [command line client](#command-line-client) and a [Ruby library](#ruby-library) to interface with a Travis CI service. Both work with [travis-ci.org](https://travis-ci.org), [travis-ci.com](https://travis-ci.com) or any custom Travis CI setup you might have. Check out the [installation instructions](#installation) to get it running in no time.
6
6
 
@@ -2066,6 +2066,14 @@ See https://github.com/travis-ci/travis.rb/issues/768#issuecomment-700220351 for
2066
2066
 
2067
2067
  ## Version History
2068
2068
 
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
+
2069
2077
  ### 1.10.1
2070
2078
 
2071
2079
  * Fix `travis monitor` command https://github.com/travis-ci/travis.rb/pull/770
@@ -56,7 +56,6 @@ module Travis
56
56
  github.with_token do |token|
57
57
  access_token = github_auth(token)
58
58
  end
59
- session.access_token = nil
60
59
  unless access_token
61
60
  raise Travis::Client::GitHubLoginFailed, "all GitHub tokens given were invalid"
62
61
  end
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.11.0'
2
+ VERSION = '1.11.1'
3
3
  end
data/travis.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general info
4
4
  s.name = "travis"
5
- s.version = "1.11.0"
5
+ s.version = "1.11.1"
6
6
  s.required_ruby_version = ">= 2.3.0"
7
7
  s.description = "CLI and Ruby client library for Travis CI"
8
8
  s.homepage = "https://github.com/travis-ci/travis.rb"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: travis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.11.0
4
+ version: 1.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
@@ -107,7 +107,7 @@ authors:
107
107
  autorequire:
108
108
  bindir: bin
109
109
  cert_chain: []
110
- date: 2022-01-03 00:00:00.000000000 Z
110
+ date: 2022-06-09 00:00:00.000000000 Z
111
111
  dependencies:
112
112
  - !ruby/object:Gem::Dependency
113
113
  name: faraday