branch-name 3.10.10 → 4.0.0

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: fc33c59266b33662ba1c16ad802f93503902834cdf2e07baeb629be30af4d4f4
4
- data.tar.gz: 9cba4ab1e0c75e7f914b350fcf5ea002607f554e6d83742e7a40d9aa1547b514
3
+ metadata.gz: c35d514b84c1fa3d3ce2745cf3e43a680de132a4a4ad5a3e266c5b8b65236be4
4
+ data.tar.gz: c609b783df96626c857ed31c9e807ac0319b9bcd35c0a0f5690d9d75d5d80aba
5
5
  SHA512:
6
- metadata.gz: 7dc958698dabaac1345a496e8a6c62aaf5f85c96a1e85f2791b920930db3407b367c980fa4a5badfa519435363d61c175467b0b23b8dfe3b8e07c9aec66517ee
7
- data.tar.gz: '07964066ccdfcf52661dca8db6d87c341a939ea362ccf52c8419ce9d0e66b2f77cd49a30e57cd7531199d199c784e0cbe7f5447dc4aa005d8ecf5a31f8d4b20a'
6
+ metadata.gz: 1926e345b8bdc4116b2a9c884a92a52de1d280328e04cfe57294d353087fe690a9dd61f0782e92594a7863479272bae353cb75ce8eaf6bd95e45bdd1aed919c1
7
+ data.tar.gz: c6f6d960252c32a4bbd23fc90ff007ed03b326a6ffaf31325b1cc43088271ef75b53abd91d907b7b8315d8aa48593dcb70368ec7661e038b767e2d7431557138
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.1
1
+ 3.0.6
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## ['4.0.0'] - 2024-01-16
2
+
3
+ Changes
4
+
5
+ - Update min ruby version to 3.0.6.
6
+ - Update gems.
7
+
1
8
  ## ['3.10.10'] - 2024-01-16
2
9
 
3
10
  Changes
data/Gemfile CHANGED
@@ -15,5 +15,5 @@ gem 'rspec-activemodel-mocks', '>= 1.1', '< 2.0'
15
15
  gem 'rubocop', '>= 1.56.0', '< 2.0'
16
16
  gem 'rubocop-performance', '>= 1.19', '< 2.0'
17
17
  gem 'rubocop-rspec', '>= 2.23', '< 3.0'
18
- gem 'shoulda-matchers', '>= 5.3', '< 6.0'
18
+ gem 'shoulda-matchers', '>= 6.0', '< 7.0'
19
19
  gem 'simplecov', '>= 0.22.0', '< 1.0'
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- branch-name (3.10.10)
4
+ branch-name (4.0.0)
5
5
  activesupport (>= 7.0.8, < 8.0.0)
6
6
  colorize (>= 1.1.0, < 2.0)
7
7
  os (>= 1.1, < 2.0)
@@ -134,7 +134,7 @@ GEM
134
134
  rubocop-factory_bot (~> 2.22)
135
135
  ruby-progressbar (1.13.0)
136
136
  ruby2_keywords (0.0.5)
137
- shoulda-matchers (5.3.0)
137
+ shoulda-matchers (6.0.0)
138
138
  activesupport (>= 5.2.0)
139
139
  simplecov (0.22.0)
140
140
  docile (~> 1.1)
@@ -166,8 +166,8 @@ DEPENDENCIES
166
166
  rubocop (>= 1.56.0, < 2.0)
167
167
  rubocop-performance (>= 1.19, < 2.0)
168
168
  rubocop-rspec (>= 2.23, < 3.0)
169
- shoulda-matchers (>= 5.3, < 6.0)
169
+ shoulda-matchers (>= 6.0, < 7.0)
170
170
  simplecov (>= 0.22.0, < 1.0)
171
171
 
172
172
  BUNDLED WITH
173
- 2.5.3
173
+ 2.5.4
data/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # `branch-name`
2
2
 
3
3
  [![Ruby](https://github.com/gangelo/branch-name/actions/workflows/ruby.yml/badge.svg?refresh=1)](https://github.com/gangelo/branch-name/actions/workflows/ruby.yml)
4
- [![GitHub version](http://badge.fury.io/gh/gangelo%2Fbranch-name.svg?refresh=3)](https://badge.fury.io/gh/gangelo%2Fbranch-name)
5
- [![Gem Version](https://badge.fury.io/rb/branch-name.svg?refresh=3)](https://badge.fury.io/rb/branch-name)
4
+ [![GitHub version](http://badge.fury.io/gh/gangelo%2Fbranch-name.svg?refresh=4)](https://badge.fury.io/gh/gangelo%2Fbranch-name)
5
+ [![Gem Version](https://badge.fury.io/rb/branch-name.svg?refresh=4)](https://badge.fury.io/rb/branch-name)
6
6
  [![](http://ruby-gem-downloads-badge.herokuapp.com/branch-name?type=total)](http://www.rubydoc.info/gems/branch-name/)
7
7
  [![Documentation](http://img.shields.io/badge/docs-rdoc.info-blue.svg)](http://www.rubydoc.info/gems/branch-name/)
8
8
  [![Report Issues](https://img.shields.io/badge/report-issues-red.svg)](https://github.com/gangelo/branch-name/issues)
@@ -3,6 +3,6 @@
3
3
  module Branch
4
4
  module Name
5
5
  # branch-name version
6
- VERSION = '3.10.10'
6
+ VERSION = '4.0.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: branch-name
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.10
4
+ version: 4.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
@@ -202,7 +202,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
202
202
  requirements:
203
203
  - - ">="
204
204
  - !ruby/object:Gem::Version
205
- version: 3.0.1
205
+ version: 3.0.6
206
206
  - - "<"
207
207
  - !ruby/object:Gem::Version
208
208
  version: '4.0'
@@ -212,7 +212,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
212
212
  - !ruby/object:Gem::Version
213
213
  version: '0'
214
214
  requirements: []
215
- rubygems_version: 3.2.15
215
+ rubygems_version: 3.2.33
216
216
  signing_key:
217
217
  specification_version: 4
218
218
  summary: Generates a branch name based on a JIRA ticket/ticket number.