bump_gem_version 0.1.8 → 1.0.0

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: 3b2c5345e697ae6c1c892edb3e3149662a165ffc2a5498d250ffe1cee6a9c04d
4
- data.tar.gz: dbf5c33979c6d35b1c96a5e6e061ca1338af5c48b1a8c6c2d773249167324cc9
3
+ metadata.gz: 251a5615fa187f6edf219af8b730e7d7f10d82b7f1c32edb534c0530a732b4c9
4
+ data.tar.gz: 84ce42a6dbde38925e2b424bf48883234e990cd3b68faddeda7e8ab747bdb45a
5
5
  SHA512:
6
- metadata.gz: 263bc8fd7da0acf3c12484b23b336470c64cd5cb49637b70229567e9f2e37b304401a4400f106eb33368ef2411d1c00d36674974f70f954b834686a8c89bb71e
7
- data.tar.gz: 17ca9b610c7f8752ff377ed628e97a9be3f7066994dedafef04d1411f2c4cd7092e1ba922011fe0954d82a8c6f951409803582abf95c404262469f2d4da36bb2
6
+ metadata.gz: f045b3172e70b3a6847a0c6aebd2ac1adc206e19e7f7ddbac710e7868feedf1215fec1788d42a7cee4798e353c121496b12fe43130655a267577422c37e72439
7
+ data.tar.gz: 4d09857fe4c9e985bc8aaacc111267848a33bed18338478e9cf95102dddc967e7369e59ac785344780adcf88c030c52c679f076a0a202c01a5c3fcd19230e496
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ require:
4
4
 
5
5
  AllCops:
6
6
  NewCops: enable
7
- TargetRubyVersion: 3.1
7
+ TargetRubyVersion: 3.2
8
8
 
9
9
  Style/StringLiterals:
10
10
  Enabled: true
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.0] - 2024-07-29
4
+
5
+ - Changed: Bumped the dependency gems to their latest version.
6
+ - BREAKING CHANGE: Removed support for Ruby versions `3.1.x`.
7
+
3
8
  ## [0.1.8] - 2023-12-30
4
9
 
5
10
  - Changed: Bumped the dependency gems to their latest version.
data/Gemfile.lock CHANGED
@@ -1,49 +1,52 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bump_gem_version (0.1.8)
4
+ bump_gem_version (1.0.0)
5
5
  thor (~> 1.3)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
9
9
  specs:
10
10
  ast (2.4.2)
11
- json (2.7.1)
11
+ json (2.7.2)
12
12
  language_server-protocol (3.17.0.3)
13
- minitest (5.20.0)
14
- parallel (1.24.0)
15
- parser (3.2.2.4)
13
+ minitest (5.24.1)
14
+ parallel (1.25.1)
15
+ parser (3.3.4.0)
16
16
  ast (~> 2.4.1)
17
17
  racc
18
- racc (1.7.3)
18
+ racc (1.8.0)
19
19
  rainbow (3.1.1)
20
- rake (13.1.0)
21
- regexp_parser (2.8.3)
22
- rexml (3.2.6)
23
- rubocop (1.59.0)
20
+ rake (13.2.1)
21
+ regexp_parser (2.9.2)
22
+ rexml (3.3.2)
23
+ strscan
24
+ rubocop (1.65.0)
24
25
  json (~> 2.3)
25
26
  language_server-protocol (>= 3.17.0)
26
27
  parallel (~> 1.10)
27
- parser (>= 3.2.2.4)
28
+ parser (>= 3.3.0.2)
28
29
  rainbow (>= 2.2.2, < 4.0)
29
- regexp_parser (>= 1.8, < 3.0)
30
+ regexp_parser (>= 2.4, < 3.0)
30
31
  rexml (>= 3.2.5, < 4.0)
31
- rubocop-ast (>= 1.30.0, < 2.0)
32
+ rubocop-ast (>= 1.31.1, < 2.0)
32
33
  ruby-progressbar (~> 1.7)
33
34
  unicode-display_width (>= 2.4.0, < 3.0)
34
- rubocop-ast (1.30.0)
35
- parser (>= 3.2.1.0)
36
- rubocop-minitest (0.34.2)
37
- rubocop (>= 1.39, < 2.0)
38
- rubocop-ast (>= 1.30.0, < 2.0)
35
+ rubocop-ast (1.31.3)
36
+ parser (>= 3.3.1.0)
37
+ rubocop-minitest (0.35.1)
38
+ rubocop (>= 1.61, < 2.0)
39
+ rubocop-ast (>= 1.31.1, < 2.0)
39
40
  rubocop-rake (0.6.0)
40
41
  rubocop (~> 1.0)
41
42
  ruby-progressbar (1.13.0)
42
- thor (1.3.0)
43
+ strscan (3.1.0)
44
+ thor (1.3.1)
43
45
  unicode-display_width (2.5.0)
44
46
 
45
47
  PLATFORMS
46
48
  arm64-darwin-21
49
+ arm64-darwin-23
47
50
  x86_64-linux
48
51
 
49
52
  DEPENDENCIES
@@ -55,4 +58,4 @@ DEPENDENCIES
55
58
  rubocop-rake
56
59
 
57
60
  BUNDLED WITH
58
- 2.5.3
61
+ 2.5.16
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module BumpGemVersion
4
- VERSION = "0.1.8"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bump_gem_version
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thejus Paul
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-30 00:00:00.000000000 Z
11
+ date: 2024-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -33,7 +33,6 @@ extensions: []
33
33
  extra_rdoc_files: []
34
34
  files:
35
35
  - ".rubocop.yml"
36
- - ".ruby-version"
37
36
  - CHANGELOG.md
38
37
  - CODE_OF_CONDUCT.md
39
38
  - Gemfile
@@ -61,14 +60,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
61
60
  requirements:
62
61
  - - ">="
63
62
  - !ruby/object:Gem::Version
64
- version: '3.1'
63
+ version: '3.2'
65
64
  required_rubygems_version: !ruby/object:Gem::Requirement
66
65
  requirements:
67
66
  - - ">="
68
67
  - !ruby/object:Gem::Version
69
68
  version: '0'
70
69
  requirements: []
71
- rubygems_version: 3.5.3
70
+ rubygems_version: 3.5.16
72
71
  signing_key:
73
72
  specification_version: 4
74
73
  summary: BumpGemVersion is a gem that will simplify the way you build gems.
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- 3.1.4