semverify 0.3.2 → 0.3.3

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: 70523fa457e6370bd31c6e0ac31d47c7a145670e3d3c3a521161aa4f931df504
4
- data.tar.gz: 3f8b105ee8359ecd413ae649f5571d471f7abfcd466fe2a4b4114ca02f76da9a
3
+ metadata.gz: 41a3809c6cae7f9f230eb4a662cef3599670f7d2366fa6b59be05dcd21468748
4
+ data.tar.gz: e93c4cc212d6c43e97003f33b91d4b48319ca4814996083e040885592dcc5890
5
5
  SHA512:
6
- metadata.gz: c1edf2e300a7b7121cadefcacf8bcc0ec37ff2c8ad91042524c96e28204eaf3f696a5a6b736c3c33cedaf9108e20667d278d5eb55c09278f58cc4181014166f1
7
- data.tar.gz: cf5ea76b244214a159036db34b0e0f4b1234acb5dcb49d50c52d115bf9867bc325ffaac056debf222e11821df3003366f1e952d8897af9a3efa25110140e6c0d
6
+ metadata.gz: 599c228a0fe9be7b3c63f9ca39283ab001931eb1d243f64b5596f4af66fcca6391550928cc293e8e7ef7db7fb64d5307aea1b303c1088408838572fd8c438a51
7
+ data.tar.gz: 7edc903b6930a7a61bd2ee1619fb1e6e9a3d6cb2ff3f02d65d0b2477ef354db75b593cb4ad4fc886976a2af46e47acf7e22e11eafd5ce8973e00d3ea5ca0c117
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## v0.3.3 (2024-01-11)
2
+
3
+ [Full Changelog](https://github.com/main-branch/semverify/compare/v0.3.2..v0.3.3)
4
+
5
+ Changes since v0.3.2:
6
+
7
+ * 8219bf1 Remove markdown from gemspec description (#21)
8
+
1
9
  ## v0.3.2 (2024-01-11)
2
10
 
3
11
  [Full Changelog](https://github.com/main-branch/semverify/compare/v0.3.1..v0.3.2)
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Semverify
4
4
  # The current version of this gem
5
- VERSION = '0.3.2'
5
+ VERSION = '0.3.3'
6
6
  end
data/semverify.gemspec CHANGED
@@ -10,39 +10,8 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'A Gem to parse and compare SemVer versions AND increment versions for Ruby Gems'
12
12
  spec.description = <<~DESC
13
- Parse, compare, and increment RubyGem versions.
14
-
15
- This gem installs the `semverify` CLI tool to display and increment a gem's version
16
- based on SemVer rules. This tool can replace the `bump` command from the
17
- [bump gem](https://rubygems.org/gems/bump/) for incrementing gem version strings.
18
-
19
- This gem also provides the `Semverify::Semver` class which knows how to parse,
20
- validate, and compare [SemVer 2.0.0](https://semver.org/spec/v2.0.0.html) version
21
- strings.
22
-
23
- Both the CLI tool and the library code support prerelease versions and versions
24
- with build metadata.
25
-
26
- Example CLI commands:
27
-
28
- ```bash
29
- # Increment the gem version
30
- semverify {next-major|next-minor|next-patch} [--pre [--pretype=TYPE]] [--build=METADATA] [--dryrun]
31
- semverify next-pre [--pretype=TYPE] [--build=METADATA] [--dryrun]
32
- semverify next-release [--build=METADATA] [--dryrun]
33
-
34
- # Command to display the current gem version
35
- semverify current
36
-
37
- # Display the gem version file
38
- semverify file
39
-
40
- # Validate that a version conforms to SemVer 2.0.0
41
- semverify validate VERSION
42
-
43
- # Get more detailed help for each command listed above
44
- semverify help [COMMAND]
45
- ```
13
+ Parse, compare, and increment RubyGem versions with the 'semverify' CLI
14
+ command or the 'Semverify::Semver' class.
46
15
  DESC
47
16
 
48
17
  spec.homepage = 'http://github.com/main-branch/semverify'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: semverify
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
@@ -171,39 +171,8 @@ dependencies:
171
171
  - !ruby/object:Gem::Version
172
172
  version: '0.9'
173
173
  description: |
174
- Parse, compare, and increment RubyGem versions.
175
-
176
- This gem installs the `semverify` CLI tool to display and increment a gem's version
177
- based on SemVer rules. This tool can replace the `bump` command from the
178
- [bump gem](https://rubygems.org/gems/bump/) for incrementing gem version strings.
179
-
180
- This gem also provides the `Semverify::Semver` class which knows how to parse,
181
- validate, and compare [SemVer 2.0.0](https://semver.org/spec/v2.0.0.html) version
182
- strings.
183
-
184
- Both the CLI tool and the library code support prerelease versions and versions
185
- with build metadata.
186
-
187
- Example CLI commands:
188
-
189
- ```bash
190
- # Increment the gem version
191
- semverify {next-major|next-minor|next-patch} [--pre [--pretype=TYPE]] [--build=METADATA] [--dryrun]
192
- semverify next-pre [--pretype=TYPE] [--build=METADATA] [--dryrun]
193
- semverify next-release [--build=METADATA] [--dryrun]
194
-
195
- # Command to display the current gem version
196
- semverify current
197
-
198
- # Display the gem version file
199
- semverify file
200
-
201
- # Validate that a version conforms to SemVer 2.0.0
202
- semverify validate VERSION
203
-
204
- # Get more detailed help for each command listed above
205
- semverify help [COMMAND]
206
- ```
174
+ Parse, compare, and increment RubyGem versions with the 'semverify' CLI
175
+ command or the 'Semverify::Semver' class.
207
176
  email:
208
177
  - jcouball@yahoo.com
209
178
  executables:
@@ -243,8 +212,8 @@ metadata:
243
212
  allowed_push_host: https://rubygems.org
244
213
  homepage_uri: http://github.com/main-branch/semverify
245
214
  source_code_uri: http://github.com/main-branch/semverify
246
- changelog_uri: https://rubydoc.info/gems/semverify/0.3.2/file/CHANGELOG.md
247
- documentation_uri: https://rubydoc.info/gems/semverify/0.3.2
215
+ changelog_uri: https://rubydoc.info/gems/semverify/0.3.3/file/CHANGELOG.md
216
+ documentation_uri: https://rubydoc.info/gems/semverify/0.3.3
248
217
  rubygems_mfa_required: 'true'
249
218
  post_install_message:
250
219
  rdoc_options: []