dsu 3.0.4 → 3.0.5

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: d3b3efbf853209848d3530f2909bf2d6c5799cd18fb418d261cee93a20a5eede
4
- data.tar.gz: d6f7349342aa633f62c6c334c54539cf2d4cb3de7c3026ba60b9cd6a61bf6cc6
3
+ metadata.gz: 0b26985f5bb69b67fd15e9b718f65529556ecd2d7c09e0a32ed9360003062377
4
+ data.tar.gz: d7f890824fff3ccc89b4fb3f614aa2f9b94a7625f216c242842dca631b12f617
5
5
  SHA512:
6
- metadata.gz: b1074651d903e6f207b97191401ff6269c2a14bf823226f8aa4123cc8500ff2e2ec16d98e4b81617a6cb0385ec2e40ba32e63082784ad9ccaccb3fe774ba67f5
7
- data.tar.gz: be46afc5392a4d38bfe2b9c6100848b0782d9b6f4e8956d8b99a623e1d60fa91145c5bcb71fad85c7b63fc5d1ec3c4a81d82e7e03d0ed73f32feb1d233df362e
6
+ metadata.gz: dbff0a386b8651fa0c3746fe099a7895f54fea0f7c1cdf907ef4ab62ddb80ec11eac4fb9de5b3667f2d71cf02fef48a5fc4142b4cf98ac9232311791f96b9bd9
7
+ data.tar.gz: 06fcbe43771476417b8683ae219ceca3116ab276a4a4296ff408d063032cb221f7a37c7b33b0b8fea290fc041e770e76fdada41fb7375835f55bafb3d378ff80
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.7
1
+ 3.1.0
data/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.0.5] - 2024-09-08
6
+
7
+ ### Changes
8
+ [x] Update activerecord and activemodel.
9
+
5
10
  ## [3.0.4] - 2024-09-08
6
11
 
7
12
  ### Changes
data/Gemfile.lock CHANGED
@@ -1,9 +1,9 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (3.0.4)
5
- activemodel (>= 7.0.8, < 8.0)
6
- activesupport (>= 7.0.8, < 8.0)
4
+ dsu (3.0.5)
5
+ activemodel (>= 7.2.1, < 8.0)
6
+ activesupport (>= 7.2.1, < 8.0)
7
7
  colorize (>= 1.1, < 2.0)
8
8
  os (>= 1.1, < 2.0)
9
9
  thor (>= 1.2, < 2.0)
@@ -13,18 +13,19 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- activemodel (7.1.4)
17
- activesupport (= 7.1.4)
18
- activesupport (7.1.4)
16
+ activemodel (7.2.1)
17
+ activesupport (= 7.2.1)
18
+ activesupport (7.2.1)
19
19
  base64
20
20
  bigdecimal
21
- concurrent-ruby (~> 1.0, >= 1.0.2)
21
+ concurrent-ruby (~> 1.0, >= 1.3.1)
22
22
  connection_pool (>= 2.2.5)
23
23
  drb
24
24
  i18n (>= 1.6, < 2)
25
+ logger (>= 1.4.2)
25
26
  minitest (>= 5.1)
26
- mutex_m
27
- tzinfo (~> 2.0)
27
+ securerandom (>= 0.3)
28
+ tzinfo (~> 2.0, >= 2.0.5)
28
29
  ast (2.4.2)
29
30
  base64 (0.2.0)
30
31
  bigdecimal (3.1.8)
@@ -71,9 +72,9 @@ GEM
71
72
  concurrent-ruby (~> 1.0)
72
73
  json (2.7.2)
73
74
  language_server-protocol (3.17.0.3)
75
+ logger (1.6.1)
74
76
  method_source (1.1.0)
75
77
  minitest (5.25.1)
76
- mutex_m (0.2.0)
77
78
  os (1.1.4)
78
79
  parallel (1.26.3)
79
80
  parser (3.3.5.0)
@@ -130,6 +131,7 @@ GEM
130
131
  rubocop-rspec (3.0.5)
131
132
  rubocop (~> 1.61)
132
133
  ruby-progressbar (1.13.0)
134
+ securerandom (0.3.1)
133
135
  simplecov (0.22.0)
134
136
  docile (~> 1.1)
135
137
  simplecov-html (~> 0.11)
data/README.md CHANGED
@@ -30,7 +30,6 @@ The [dsu wiki](https://github.com/gangelo/dsu/wiki) is currently the gold standa
30
30
 
31
31
  # Supported ruby versions
32
32
  `dsu` _should_ work with any ruby version `['>= 3.0.7', '< 4.0']`; however, `dsu` is currently tested against the ubuntu-latest, macos-latest and windows-latest platforms, using the following ruby versions:
33
- - 3.0.7
34
33
  - 3.1
35
34
  - 3.2
36
35
  - 3.3
data/lib/dsu/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Dsu
4
4
  VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/
5
- VERSION = '3.0.4'
5
+ VERSION = '3.0.5'
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dsu
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.4
4
+ version: 3.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 7.0.8
19
+ version: 7.2.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '8.0'
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 7.0.8
29
+ version: 7.2.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '8.0'
@@ -36,7 +36,7 @@ dependencies:
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 7.0.8
39
+ version: 7.2.1
40
40
  - - "<"
41
41
  - !ruby/object:Gem::Version
42
42
  version: '8.0'
@@ -46,7 +46,7 @@ dependencies:
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 7.0.8
49
+ version: 7.2.1
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
52
  version: '8.0'
@@ -390,7 +390,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
390
390
  requirements:
391
391
  - - ">="
392
392
  - !ruby/object:Gem::Version
393
- version: 3.0.7
393
+ version: 3.1.0
394
394
  - - "<"
395
395
  - !ruby/object:Gem::Version
396
396
  version: '4.0'
@@ -400,7 +400,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
400
400
  - !ruby/object:Gem::Version
401
401
  version: '0'
402
402
  requirements: []
403
- rubygems_version: 3.5.18
403
+ rubygems_version: 3.3.3
404
404
  signing_key:
405
405
  specification_version: 4
406
406
  summary: dsu (Agile Daily Stand Up/DSU) mini-manager.