vers 1.0.2 → 1.0.3

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: 1d904eb920b2c6fdf0d9f7932fb554f5df4d9c4ad342e9c019145f5a762a3b2d
4
- data.tar.gz: 33106411993984f162becc1a64f7b4d6440891b6cf7ededd9afa8a85a13aaa86
3
+ metadata.gz: b753f78521c853cb7c511190af2d9722a20a1d5f503295da5b922ab020950c60
4
+ data.tar.gz: 5a4d226e512a2f71b7634e946272c79d2558db811d8a734d258e2a48663648a3
5
5
  SHA512:
6
- metadata.gz: 5cd8cfc8cb3d0ed68bcba85adee09618f5c52fa181c4b931a49c925a550a4e2ba6c5113d8569dcb7c2157e49f70a01510139f3891416ab4f6746a02973c73785
7
- data.tar.gz: d9c17e580ebfe42ea912068083f2a697996db7f7e57d3db3973d90d787a05a3e3f3b016ffe8ade7d5962b012f52fd26c675cd8684f2ee285a08add523735d99b
6
+ metadata.gz: ff9ae01cbf359c8b76bb10e7e2741c2d70d119039076b520dfa4c3b2e40c022c96b23b72b2251c2d00005d0ae0c81caacc125903506c97f807e7b980a8d07dc6
7
+ data.tar.gz: 949060b4a56d8bc53b9ab42ec65eb98afd1fb50ba17108abd57fd98e9d5fa5abd299931b006a341ed813ac4df7d644222aa98205dd209ca30c7fa2f01df74e76
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 4.0.0
data/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.0.3] - 2026-01-09
11
+
12
+ ### Added
13
+ - Added LICENSE file with MIT license text
14
+ - Added license field to gemspec
15
+
10
16
  ## [1.0.2] - 2025-08-20
11
17
 
12
18
  ### Fixed
@@ -111,6 +117,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
111
117
  - **No runtime dependencies** - pure Ruby implementation
112
118
  - **Minitest** for testing (development dependency only)
113
119
 
114
- [Unreleased]: https://github.com/andrew/vers/compare/v1.0.0...HEAD
120
+ [Unreleased]: https://github.com/andrew/vers/compare/v1.0.3...HEAD
121
+ [1.0.3]: https://github.com/andrew/vers/compare/v1.0.2...v1.0.3
122
+ [1.0.2]: https://github.com/andrew/vers/compare/v1.0.1...v1.0.2
123
+ [1.0.1]: https://github.com/andrew/vers/compare/v1.0.0...v1.0.1
115
124
  [1.0.0]: https://github.com/andrew/vers/compare/v0.1.0...v1.0.0
116
125
  [0.1.0]: https://github.com/andrew/vers/releases/tag/v0.1.0
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Andrew Nesbitt
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md CHANGED
@@ -255,7 +255,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/andrew
255
255
 
256
256
  ## License
257
257
 
258
- The gem is available as open source under the terms of the MIT License.
258
+ The gem is available as open source under the terms of the [MIT License](LICENSE).
259
259
 
260
260
  ## Code of Conduct
261
261
 
data/lib/vers/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Vers
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
 
6
6
  ##
7
7
  # Handles version comparison and normalization across different package ecosystems.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vers
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Nesbitt
@@ -18,9 +18,11 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
+ - ".ruby-version"
21
22
  - CHANGELOG.md
22
23
  - CODE_OF_CONDUCT.md
23
24
  - CONTRIBUTING.md
25
+ - LICENSE
24
26
  - README.md
25
27
  - Rakefile
26
28
  - SECURITY.md
@@ -34,7 +36,8 @@ files:
34
36
  - sig/vers.rbs
35
37
  - test-suite-data.json
36
38
  homepage: https://github.com/andrew/vers
37
- licenses: []
39
+ licenses:
40
+ - MIT
38
41
  metadata:
39
42
  allowed_push_host: https://rubygems.org
40
43
  homepage_uri: https://github.com/andrew/vers
@@ -54,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
57
  - !ruby/object:Gem::Version
55
58
  version: '0'
56
59
  requirements: []
57
- rubygems_version: 3.6.9
60
+ rubygems_version: 4.0.3
58
61
  specification_version: 4
59
62
  summary: A Ruby gem for parsing, comparing and sorting versions according to the VERS
60
63
  spec.