travis 1.10.0.pre.rc3 → 1.10.0.pre.rc4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e27b74ed56214041d4ef2e81d7157fe9ff695300f13cd57a2021539024427573
4
- data.tar.gz: 648c7356aeb81fd558be46af40b84f6bd027ddf87a7a7f6e54e40befda74ede6
3
+ metadata.gz: 0e905342871129af20f51129783f53ed4f4b67449c6eb85420171ced85d2a22f
4
+ data.tar.gz: 62aa2f7fb8418052d24e70ef69a596dd4b1573a95d716652c1d306f22aa8590a
5
5
  SHA512:
6
- metadata.gz: 9c52038026093f52fc4ac786e85357206afa3a619698c527aa78f6efa04e7fdb7de8df03322d65f28293a9d88d3f5298bfe4a117b45980bce6ed789fde19297a
7
- data.tar.gz: 91dd03ad789b2747a81562daaa26ca4e0bc4954710bd4e3fa044cc266226236c5dc9218c638463e6cb7f701b7419107aec61aa60a8c7862817c760b644a96c8c
6
+ metadata.gz: cf99c2c712661583e0c7d242b965b2ebf306821512f34c8f5dbffc3223165e6f72ec528c71a4f05bcadb9ca638b0bef15e8909c7c6afef6a84a8b040c6ff3e6c
7
+ data.tar.gz: 1b3096bd91e474f7ac40927899f04fc3d78db25c18dda4c75ebc131c4efa2c6b5e4243dd1dcf6466ac00292d8597f727463d2b6b5a797254401d3d3d1d9138dd
data/README.md CHANGED
@@ -2018,7 +2018,7 @@ If you do not have write access to the system gem directory, you'll need to perf
2018
2018
  Now make sure everything is working:
2019
2019
 
2020
2020
  $ travis version
2021
- 1.10.0.pre.rc1
2021
+ 1.10.0.pre.rc4
2022
2022
 
2023
2023
  See also [Note on Ubuntu](#ubuntu) below.
2024
2024
 
@@ -2126,6 +2126,15 @@ If you have the old `travis-cli` gem installed, you should `gem uninstall travis
2126
2126
 
2127
2127
  ## Version History
2128
2128
 
2129
+ ### 1.10.0 (September 22, 2020)
2130
+
2131
+ * Requires Ruby 2.3.0 or later (2.6.0 or later is recommended)
2132
+ * Display a meaningful message when Travis API is unavailable. https://github.com/travis-ci/travis.rb/issues/753
2133
+ * Eschew `which` to find a command on the system. https://github.com/travis-ci/travis.rb/pull/765
2134
+ * Fix `--list-github-token` flag. https://github.com/travis-ci/travis.rb/pull/766
2135
+ * FFI is no longer required. https://github.com/travis-ci/travis.rb/pull/758
2136
+ * Typhoeus is no longer required, but remains supported (used if installed). https://github.com/travis-ci/travis.rb/pull/756
2137
+
2129
2138
  ### 1.9.1 (May 19, 2020)
2130
2139
 
2131
2140
  * Fix `--no-interactive` flag in `encrypt` and `encryt-file` commands https://github.com/travis-ci/travis.rb/pull/738
@@ -34,7 +34,8 @@ module Travis
34
34
  attr_writer :travis_config
35
35
 
36
36
  def self.languages
37
- asset_path('init/*.yml').map { |f| File.basename(f, '.yml') }.sort
37
+ Dir[File.expand_path('init/*.yml', Travis::Tools::Assets::BASE)]
38
+ .map { |f| File.basename(f, '.yml') }.sort
38
39
  end
39
40
 
40
41
  def help
@@ -47,7 +47,7 @@ module Travis
47
47
  commands = Travis::CLI.commands.sort_by { |c| c.command_name }
48
48
  template = Assets.read('travis.sh.erb')
49
49
  source = ERB.new(template).result(binding).gsub(/^ +\n/, '')
50
- File.write(Assets['travis.sh'].first, source)
50
+ File.write(Assets['travis.sh'], source)
51
51
  end
52
52
  end
53
53
  end
@@ -1,3 +1,3 @@
1
1
  module Travis
2
- VERSION = '1.10.0.pre.rc3'
2
+ VERSION = '1.10.0.pre.rc4'
3
3
  end
@@ -2,7 +2,7 @@
2
2
  Gem::Specification.new do |s|
3
3
  # general info
4
4
  s.name = "travis"
5
- s.version = "1.10.0.pre.rc3"
5
+ s.version = "1.10.0.pre.rc4"
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"
@@ -62,6 +62,7 @@ Gem::Specification.new do |s|
62
62
  "Dani Hodovic",
63
63
  "Daniel Chatfield",
64
64
  "Dominic Jodoin",
65
+ "Eli Schwartz",
65
66
  "Eric Herot",
66
67
  "Eugene K",
67
68
  "George Millo",
@@ -100,6 +101,7 @@ Gem::Specification.new do |s|
100
101
  "Robert Grider",
101
102
  "Robert Van Voorhees",
102
103
  "Simon Cropp",
104
+ "Tahsin Hasan",
103
105
  "Titus",
104
106
  "Titus Wormer",
105
107
  "Tobias Wilken",
@@ -164,6 +166,7 @@ Gem::Specification.new do |s|
164
166
  "danihodovic@users.noreply.github.com",
165
167
  "chatfielddaniel@gmail.com",
166
168
  "dominic@travis-ci.com",
169
+ "eschwartz@archlinux.org",
167
170
  "eric.github@herot.com",
168
171
  "34233075+eugene-kulak@users.noreply.github.com",
169
172
  "georgejulianmillo@gmail.com",
@@ -203,6 +206,7 @@ Gem::Specification.new do |s|
203
206
  "robert.grider@northwestern.edu",
204
207
  "rcvanvo@gmail.com",
205
208
  "simon.cropp@gmail.com",
209
+ "51903216+Tahsin-travis-ci@users.noreply.github.com",
206
210
  "tituswormer@gmail.com",
207
211
  "tw@cloudcontrol.de",
208
212
  "pair+zg@pivotallabs.com",
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.10.0.pre.rc3
4
+ version: 1.10.0.pre.rc4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Konstantin Haase
@@ -54,6 +54,7 @@ authors:
54
54
  - Dani Hodovic
55
55
  - Daniel Chatfield
56
56
  - Dominic Jodoin
57
+ - Eli Schwartz
57
58
  - Eric Herot
58
59
  - Eugene K
59
60
  - George Millo
@@ -92,6 +93,7 @@ authors:
92
93
  - Robert Grider
93
94
  - Robert Van Voorhees
94
95
  - Simon Cropp
96
+ - Tahsin Hasan
95
97
  - Titus
96
98
  - Titus Wormer
97
99
  - Tobias Wilken
@@ -105,7 +107,7 @@ authors:
105
107
  autorequire:
106
108
  bindir: bin
107
109
  cert_chain: []
108
- date: 2020-09-21 00:00:00.000000000 Z
110
+ date: 2020-09-22 00:00:00.000000000 Z
109
111
  dependencies:
110
112
  - !ruby/object:Gem::Dependency
111
113
  name: faraday
@@ -319,6 +321,7 @@ email:
319
321
  - danihodovic@users.noreply.github.com
320
322
  - chatfielddaniel@gmail.com
321
323
  - dominic@travis-ci.com
324
+ - eschwartz@archlinux.org
322
325
  - eric.github@herot.com
323
326
  - 34233075+eugene-kulak@users.noreply.github.com
324
327
  - georgejulianmillo@gmail.com
@@ -358,6 +361,7 @@ email:
358
361
  - robert.grider@northwestern.edu
359
362
  - rcvanvo@gmail.com
360
363
  - simon.cropp@gmail.com
364
+ - 51903216+Tahsin-travis-ci@users.noreply.github.com
361
365
  - tituswormer@gmail.com
362
366
  - tw@cloudcontrol.de
363
367
  - pair+zg@pivotallabs.com