dragnet 6.1.0 → 7.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: ef69b75eaf7784a81c38f595c3472545d93169ce9835c1cd02401652b12bded8
4
- data.tar.gz: e1543ca68c142d5b2a3450652126cfcc94931f88b133c358b4a998babf0dfda1
3
+ metadata.gz: ba7bba93c9d527408315d5a8b9a4fa709044fceec0a1268d21852b483e9eff69
4
+ data.tar.gz: 16eb2e12c4ac20f9a5c79eca4cb46032cd8a3add57fa75f0437d849d063395e1
5
5
  SHA512:
6
- metadata.gz: c4da21f5b7d812bb272ab683cbe78723d484491f9541cadf11a47016c244c2385cb05d0671e04d01c9f255297f8f0a3e8e68db3efcc78e74a6957c219874b21a
7
- data.tar.gz: 3faeb02b126e6599135bb7e862e30c06a160900c25a55928e86123a75c87dc2c55d38403bce02a5676923e5c3e27f23933d183de8c58b174120348726d79ecbf
6
+ metadata.gz: 4af4adeaed0078ee91f14c69567a39e76318dfede297a4e61370d1ad5fa18bf1f13b98608cf677a5d51ecf27750a3daee295374737629b54aadf0061d469cdfb
7
+ data.tar.gz: 72fcf1b8034c1ed8861dcf38cad6be3bcac7c0ea872db54577bc3b9dc24e76fc828690e021ddd8e5c4e082857083e62233da546d0479099dbb561578c281e53d
@@ -17,10 +17,10 @@ jobs:
17
17
 
18
18
  steps:
19
19
  - uses: actions/checkout@v4
20
- - name: Set up Ruby 3.1
20
+ - name: Set up Ruby 3.2.2
21
21
  uses: ruby/setup-ruby@v1
22
22
  with:
23
- ruby-version: 3.1.0
23
+ ruby-version: 3.2.2
24
24
  - name: Build
25
25
  run: |
26
26
  bundler install
@@ -22,7 +22,7 @@ jobs:
22
22
  - name: Set up Ruby
23
23
  uses: ruby/setup-ruby@v1
24
24
  with:
25
- ruby-version: '3.1'
25
+ ruby-version: '3.2.2'
26
26
  - name: Install Gems
27
27
  run: |
28
28
  bundler install
@@ -22,7 +22,7 @@ jobs:
22
22
  runs-on: ubuntu-latest
23
23
  strategy:
24
24
  matrix:
25
- ruby-version: ['3.1']
25
+ ruby-version: ['3.2.2']
26
26
 
27
27
  steps:
28
28
  - uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
25
25
  # uses: ruby/setup-ruby@v1
26
26
  uses: ruby/setup-ruby@v1
27
27
  with:
28
- ruby-version: 3.1.0
28
+ ruby-version: 3.2.2
29
29
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
30
30
  - name: Test Results and Coverage
31
31
  run:
@@ -22,7 +22,7 @@ jobs:
22
22
  - name: Set up Ruby
23
23
  uses: ruby/setup-ruby@v1
24
24
  with:
25
- ruby-version: '3.1'
25
+ ruby-version: '3.2.2'
26
26
  - name: Install Gems
27
27
  run: |
28
28
  bundler install
data/.rubocop.yml CHANGED
@@ -2,11 +2,11 @@ AllCops:
2
2
  Exclude:
3
3
  - vendor/**/*
4
4
  - spec/spec_helper.rb
5
+ Layout/LineLength:
6
+ Max: 120
5
7
  Metrics/BlockLength:
6
8
  Exclude:
7
9
  - spec/**/*
8
- Metrics/LineLength:
9
- Max: 120
10
10
  Metrics/MethodLength:
11
11
  Max: 15
12
12
  Style/FrozenStringLiteralComment:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.2.2
data/CHANGELOG.md CHANGED
@@ -8,6 +8,11 @@ Please mark backwards incompatible changes with an exclamation mark at the start
8
8
 
9
9
  ## [Unreleased]
10
10
 
11
+ ## [7.0.0] - 2026-06-19
12
+
13
+ ### Changed
14
+ - ! Increased the minimum Ruby version requirement to `3.2.2`
15
+
11
16
  ## [6.1.0] - 2026-05-08
12
17
 
13
18
  ### Added
data/README.md CHANGED
@@ -43,7 +43,7 @@ any platform or use one of the official Docker images.
43
43
 
44
44
  ## Requirements
45
45
 
46
- * Ruby >= 3.1.0 (MRI)
46
+ * Ruby >= 3.2.2 (MRI)
47
47
  * Bundler >= 2.4.0
48
48
  * Git >= 2.0.0
49
49
 
data/dragnet.gemspec CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  'performed.'
16
16
  spec.homepage = 'https://github.com/esrlabs/dragnet'
17
17
  spec.license = 'MIT'
18
- spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
18
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.2.2')
19
19
 
20
20
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
21
21
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dragnet
4
- VERSION = '6.1.0'
4
+ VERSION = '7.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dragnet
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.1.0
4
+ version: 7.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ESR Labs GmbH
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-05-08 00:00:00.000000000 Z
11
+ date: 2026-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -178,14 +178,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
178
  requirements:
179
179
  - - ">="
180
180
  - !ruby/object:Gem::Version
181
- version: 3.1.0
181
+ version: 3.2.2
182
182
  required_rubygems_version: !ruby/object:Gem::Requirement
183
183
  requirements:
184
184
  - - ">="
185
185
  - !ruby/object:Gem::Version
186
186
  version: '0'
187
187
  requirements: []
188
- rubygems_version: 3.3.3
188
+ rubygems_version: 3.4.10
189
189
  signing_key:
190
190
  specification_version: 4
191
191
  summary: A gem to verify, validate and analyse MTR (Manual Test Record) files.