gem-release 2.2.0 → 2.2.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: df5f557db83497785b9b32c6c0c13220b7b7a8ec48b23fc5d368050faa07996a
4
- data.tar.gz: bafa68971d2a88664d8f40dcba532dbecddf67fc4e513dd85c0cfc0dade2e758
3
+ metadata.gz: 9ae6056b33dcdce5bdd6502c3cc50b1c590f990f2784cfc37f3592ef34f4bc71
4
+ data.tar.gz: 7ed57cade452ca137852a145add815b6deaa003a5c6d4e37eea2a2598d4220f9
5
5
  SHA512:
6
- metadata.gz: 325cf631c857c024f39b835c18ad9b1fa6ef9517f351ba7dab1fba0a3a577eecc1e184981d1fe7b42d19d0d63fb3d4503780a7d30333246c6dbe364b49c89838
7
- data.tar.gz: 8097e8309baa8bebcb967a382cf731f6c9f229016b3c77aefa062249350613e671213425fd58e229bc05017ef88a58a01602a0d53d0dda99af5997fcaa325484
6
+ metadata.gz: 8e2cb823902cb3f546bb2b24369679d96dcdcd4dc44f879b3aaada26127d68f1f87a4c5c2305340807d4780dbe10d8a1bc8513fba51bb382740c1ad4f7195df3
7
+ data.tar.gz: a90b07eccca5a12377112712ca45c9f10c78e306dcccdf10d0bcdf23f3790f9f384d04d00b7b461e2f5e39bfb4de6fa01b26db13746ebf4a129f9bc3bcd1d3c5
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## v2.2.1 - 2021-01-22
4
+
5
+ ### Fixed
6
+
7
+ - Ensure git index is refreshed before uncommitted changes check
8
+ (PR: https://github.com/svenfuchs/gem-release/pull/99)
9
+
3
10
  ## v2.2.0 - 2020-10-12
4
11
 
5
12
  ### Added
data/Gemfile CHANGED
@@ -9,6 +9,6 @@ end
9
9
  group :test do
10
10
  gem 'rspec'
11
11
  gem 'simplecov'
12
- gem 'coveralls'
12
+ gem 'simplecov-lcov'
13
13
  gem 'webmock'
14
14
  end
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gem-release (2.2.0)
4
+ gem-release (2.2.1)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,17 +9,12 @@ GEM
9
9
  addressable (2.7.0)
10
10
  public_suffix (>= 2.0.2, < 5.0)
11
11
  builder (3.2.4)
12
- coveralls (0.7.2)
13
- multi_json (~> 1.3)
14
- rest-client (= 1.6.7)
15
- simplecov (>= 0.7)
16
- term-ansicolor (= 1.2.2)
17
- thor (= 0.18.1)
18
12
  crack (0.4.4)
19
13
  diff-lcs (1.4.4)
20
14
  docile (1.3.2)
21
- faraday (1.0.1)
15
+ faraday (1.1.0)
22
16
  multipart-post (>= 1.2, < 3)
17
+ ruby2_keywords
23
18
  geminabox (1.2.0)
24
19
  builder
25
20
  faraday
@@ -29,10 +24,6 @@ GEM
29
24
  sinatra (>= 1.2.7)
30
25
  hashdiff (1.0.1)
31
26
  httpclient (2.8.3)
32
- mime-types (3.3.1)
33
- mime-types-data (~> 3.2015)
34
- mime-types-data (3.2020.0512)
35
- multi_json (1.15.0)
36
27
  multipart-post (2.1.1)
37
28
  mustermann (1.1.1)
38
29
  ruby2_keywords (~> 0.0.1)
@@ -42,37 +33,32 @@ GEM
42
33
  rack-protection (2.1.0)
43
34
  rack
44
35
  reentrant_flock (0.1.1)
45
- rest-client (1.6.7)
46
- mime-types (>= 1.16)
47
- rspec (3.9.0)
48
- rspec-core (~> 3.9.0)
49
- rspec-expectations (~> 3.9.0)
50
- rspec-mocks (~> 3.9.0)
51
- rspec-core (3.9.3)
52
- rspec-support (~> 3.9.3)
53
- rspec-expectations (3.9.2)
36
+ rspec (3.10.0)
37
+ rspec-core (~> 3.10.0)
38
+ rspec-expectations (~> 3.10.0)
39
+ rspec-mocks (~> 3.10.0)
40
+ rspec-core (3.10.0)
41
+ rspec-support (~> 3.10.0)
42
+ rspec-expectations (3.10.0)
54
43
  diff-lcs (>= 1.2.0, < 2.0)
55
- rspec-support (~> 3.9.0)
56
- rspec-mocks (3.9.1)
44
+ rspec-support (~> 3.10.0)
45
+ rspec-mocks (3.10.0)
57
46
  diff-lcs (>= 1.2.0, < 2.0)
58
- rspec-support (~> 3.9.0)
59
- rspec-support (3.9.3)
47
+ rspec-support (~> 3.10.0)
48
+ rspec-support (3.10.0)
60
49
  ruby2_keywords (0.0.2)
61
- simplecov (0.19.0)
50
+ simplecov (0.19.1)
62
51
  docile (~> 1.1)
63
52
  simplecov-html (~> 0.11)
64
53
  simplecov-html (0.12.3)
54
+ simplecov-lcov (0.8.0)
65
55
  sinatra (2.1.0)
66
56
  mustermann (~> 1.0)
67
57
  rack (~> 2.2)
68
58
  rack-protection (= 2.1.0)
69
59
  tilt (~> 2.0)
70
- term-ansicolor (1.2.2)
71
- tins (~> 0.8)
72
- thor (0.18.1)
73
60
  tilt (2.0.10)
74
- tins (0.13.2)
75
- webmock (3.9.1)
61
+ webmock (3.10.0)
76
62
  addressable (>= 2.3.6)
77
63
  crack (>= 0.3.2)
78
64
  hashdiff (>= 0.4.0, < 2.0.0)
@@ -81,11 +67,11 @@ PLATFORMS
81
67
  ruby
82
68
 
83
69
  DEPENDENCIES
84
- coveralls
85
70
  gem-release!
86
71
  geminabox
87
72
  rspec
88
73
  simplecov
74
+ simplecov-lcov
89
75
  webmock
90
76
 
91
77
  BUNDLED WITH
data/README.md CHANGED
@@ -9,7 +9,7 @@ It adds the commands `bootstrap`, `gemspec`, `bump`, `tag` and a `release` to th
9
9
  | Gem name | gem-release |
10
10
  | License | [MIT](https://github.com/svenfuchs/gem-release/blob/master/LICENSE.md) |
11
11
  | Version | [![Gem Version](https://badge.fury.io/rb/gem-release.svg)](http://badge.fury.io/rb/gem-release) |
12
- | Continuous integration | [![Build Status](https://secure.travis-ci.org/svenfuchs/gem-release.svg?branch=master)](https://travis-ci.org/svenfuchs/gem-release) |
12
+ | Continuous integration | [![GitHub Build Status](https://img.shields.io/github/workflow/status/svenfuchs/gem-release/Tests)](https://github.com/svenfuchs/gem-release/actions?query=workflow%3ATests) |
13
13
  | Test coverage | [![Coverage Status](https://coveralls.io/repos/svenfuchs/gem-release/badge.svg)](https://coveralls.io/r/svenfuchs/gem-release) |
14
14
  | Documentation | [Documentation](http://rdoc.info/github/svenfuchs/gem-release/frames) |
15
15
  | Credits | [Contributors](https://github.com/svenfuchs/gem-release/graphs/contributors) |
@@ -3,7 +3,7 @@ module Gem
3
3
  class Context
4
4
  class Git
5
5
  def clean?
6
- system 'git diff-index --quiet HEAD'
6
+ system 'git update-index -q --really-refresh && git diff-index --quiet HEAD'
7
7
  end
8
8
 
9
9
  def remotes
@@ -1,5 +1,5 @@
1
1
  module Gem
2
2
  module Release
3
- VERSION = '2.2.0'
3
+ VERSION = '2.2.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-release
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sven Fuchs
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-10-12 00:00:00.000000000 Z
12
+ date: 2021-01-22 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Release your ruby gems with ease. (What a bold statement for such a tiny
15
15
  plugin ...)
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  - !ruby/object:Gem::Version
98
98
  version: '0'
99
99
  requirements: []
100
- rubygems_version: 3.1.4
100
+ rubygems_version: 3.2.6
101
101
  signing_key:
102
102
  specification_version: 4
103
103
  summary: Release your ruby gems with ease