deb_version 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: f72ae7e36419f0ef876d4642f3e06ae058d5168da675477d0d3afc341cb4cb05
4
- data.tar.gz: 86ae7061b1030633724befc368d3a1dec093f87070d3baba11d5260c9d3b955f
3
+ metadata.gz: e206b0d0f14804d5bc665f82009a01c61132afa20035ad1be0a62a5545291c75
4
+ data.tar.gz: 0b106de6b9b7dc40d8fc19dc3617d28fab34892c1317038468f4d627addd1286
5
5
  SHA512:
6
- metadata.gz: 7960018f5b00825dc38fc58720af204aaed05ed1c74a70e9cdae00640341993e6fe86e7ed5865fc7875a68fd16d54245b154712fea0d6777d715598214c3b6a3
7
- data.tar.gz: 25aa6034cc10675a821236dea14dd514b471e23c1c648518b7464f70bb4bca77ef890b9f0461483614fc69fa1fe637d60b0f1c80f45b9ce409bea8e6e63ef307
6
+ metadata.gz: 61e3945cc65e6a9be4700e9dedd88e4e6cc30e71761ec4bc5feb43b437178b1b20225ad1237554279ac0fb90037032e9e982143246172d1bbf2857f56ef90e3d
7
+ data.tar.gz: 60f7dcdf7c0aa2ec2587ae07bf877e0f032a24d94c71eebbaf44a81209465dbdcafeafb05705fb1a4cac1a50363267b43c02755daedff12ab87f4f8907c2f761
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.0.3] - 2025-08-25
4
+ - Drops Ruby 3.0
5
+ - Adds Ruby 3.3, 3.4
6
+
7
+ ## [1.0.2] - 2023-05-30
8
+ - Dependency cleanup
9
+
3
10
  ## [1.0.1] - 2023-05-30
4
11
  - Bug fix for versions using `z`
5
12
  - Adds a new `to_s` method.
data/README.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Debian Version (Ruby)
2
2
 
3
+ [![License MIT](https://img.shields.io/badge/license-MIT-blue)](https://github.com/captn3m0/ruby-deb-version/blob/main/LICENSE.txt) [![Rubygems version](https://badgen.net/rubygems/v/deb_version)](https://rubygems.org/gems/deb_version) [![CI Status](https://badgen.net/github/checks/captn3m0/ruby-deb-version)](https://github.com/captn3m0/ruby-deb-version/actions/workflows/main.yml?query=branch%3Amain) ![Latest Tag](https://badgen.net/github/tag/captn3m0/ruby-deb-version) [![GitHub issues](https://img.shields.io/github/issues-raw/captn3m0/ruby-deb-version?color=orange&logo=github&logoColor=white)](https://github.com/captn3m0/ruby-deb-version/issues?q=is%3Aissue+is%3Aopen)
4
+
3
5
  A port of "Debian Version" comparison function to Ruby. This is based on
4
6
  [Debian Policy Manual v4.6.20, Section 5.6.12](https://www.debian.org/doc/debian-policy/ch-controlfields.html#version).
5
7
 
6
- It adapts some of the code from https://github.com/FauxFaux/deb-version and https://github.com/xolox/python-deb-pkg-tools
8
+ It adapts some of the code and tests from https://github.com/FauxFaux/deb-version and https://github.com/xolox/python-deb-pkg-tools
7
9
 
8
10
  ## Installation
9
11
 
@@ -42,7 +44,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/captn3
42
44
 
43
45
  ## License
44
46
 
45
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
47
+ The gem is available as open source under the terms of the [MIT License](https://nemo.mit-license.org/).
46
48
 
47
49
  ## Code of Conduct
48
50
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class DebVersion
4
- VERSION = "1.0.2"
4
+ VERSION = "1.0.3"
5
5
  end
metadata CHANGED
@@ -1,16 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: deb_version
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
  - Nemo
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-05-30 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email:
15
13
  - rubygem@captnemo.in
16
14
  executables: []
@@ -31,9 +29,8 @@ licenses:
31
29
  metadata:
32
30
  homepage_uri: https://github.com/captn3m0/ruby-deb-version
33
31
  source_code_uri: https://github.com/captn3m0/ruby-deb-version
34
- changelog_uri: https://github.com/captn3m0/ruby-deb-version/blob/main/README.md
32
+ changelog_uri: https://github.com/captn3m0/ruby-deb-version/blob/main/CHANGELOG.md
35
33
  rubygems_mfa_required: 'true'
36
- post_install_message:
37
34
  rdoc_options: []
38
35
  require_paths:
39
36
  - lib
@@ -41,15 +38,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
41
38
  requirements:
42
39
  - - ">="
43
40
  - !ruby/object:Gem::Version
44
- version: 3.0.0
41
+ version: 3.1.0
45
42
  required_rubygems_version: !ruby/object:Gem::Requirement
46
43
  requirements:
47
44
  - - ">="
48
45
  - !ruby/object:Gem::Version
49
46
  version: '0'
50
47
  requirements: []
51
- rubygems_version: 3.3.25
52
- signing_key:
48
+ rubygems_version: 3.6.9
53
49
  specification_version: 4
54
50
  summary: A port of Debian Version comparison to Ruby.
55
51
  test_files: []