procrastinator 1.2.0 → 2.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: dc44a4968d52be8482c61e47a86cd1773cd160e827f4ac8a6e4ac5fd3bbe6b8f
4
- data.tar.gz: 8e3494bfa1a6494f16736c2937a20385cd8231b7615194c8f3b52dbf1d16a4e5
3
+ metadata.gz: 86ce767f3807bc5184e0d658392cbf45b03ab68465a5161c8ffd9434157bd007
4
+ data.tar.gz: 65b3b517a6bdd6150b34ee0e8419834f581abbe1ced3d1ae5aef50613a452c94
5
5
  SHA512:
6
- metadata.gz: c0644921316f9db7ef0d1d3ee24fab20a5cf458077b16636e42d793387c9f9198e122ca959f113e777b82eb7d61983229f6a3afb09aab0931dce0fa507c6a13b
7
- data.tar.gz: 4a2a86a807672c8b9335f1c835f90a80440045b787b75ff51d2e791e2f7075abb50be8e42362419742573ef1b160f262dae6eebb1d73b6377a635f5f805d85eb
6
+ metadata.gz: e00357dccd1ac7bdbc2ce72fdaada932f3155b155c88c4af8ccd7674f1db196cd186b0f96a3c1b99f2751cf30652f77fabcfab733e091539e3748b90fe04c0ac
7
+ data.tar.gz: ee3425d98d5eca4d321e36b37428e50300cad78db202b34ef4150058c3a2a42fd0452f76015e51f3d5830c8e289f823e3d1e94aa086edcd694fb5d412558bdee
data/.rubocop.yml CHANGED
@@ -4,7 +4,7 @@ AllCops:
4
4
  Exclude:
5
5
  - 'bin/*'
6
6
 
7
- TargetRubyVersion: 2.7
7
+ TargetRubyVersion: 3.0
8
8
 
9
9
  Layout/LineLength:
10
10
  Exclude:
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- ruby-2.7.8
1
+ ruby-3.1.4
data/Gemfile CHANGED
@@ -6,10 +6,10 @@ group :development do
6
6
  gem 'bundler', '~> 2.3'
7
7
  gem 'fakefs', '~> 1.8'
8
8
  gem 'rake', '~> 13.0'
9
- gem 'rspec', '~> 3.9'
10
- gem 'rubocop', '~> 1.12'
11
- gem 'rubocop-performance', '~> 1.10'
12
- gem 'simplecov', '~> 0.18.0'
9
+ gem 'rspec', '~> 3.12'
10
+ gem 'rubocop', '~> 1.52'
11
+ gem 'rubocop-performance', '~> 1.18'
12
+ gem 'simplecov', '~> 0.22.0'
13
13
  gem 'timecop', '~> 0.9'
14
14
  gem 'yard', '~> 0.9'
15
15
  end
data/RELEASE_NOTES.md CHANGED
@@ -1,6 +1,20 @@
1
1
  # Release Notes
2
2
 
3
- ## 1.2.0 ( )
3
+ ## 2.0.0 (2023-06-17)
4
+
5
+ ### Major Changes
6
+
7
+ * Updated minimum ruby to 3.0
8
+
9
+ ### Minor Changes
10
+
11
+ * Updated development dependencies
12
+
13
+ ### Bugfixes
14
+
15
+ * none
16
+
17
+ ## 1.2.0 (2023-06-17)
4
18
 
5
19
  ### Major Changes
6
20
 
@@ -94,7 +94,7 @@ module Procrastinator
94
94
  raise AmbiguousTaskFilterError, "too many (#{ tasks.size }) tasks match #{ identifier }. Found: #{ tasks }"
95
95
  end
96
96
 
97
- TaskMetaData.new(tasks.first.merge(queue: self))
97
+ TaskMetaData.new(**tasks.first.merge(queue: self))
98
98
  end
99
99
 
100
100
  # Creates a task on the queue, saved using the Task Store strategy.
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Procrastinator
4
4
  # Version number of this release
5
- VERSION = '1.2.0'
5
+ VERSION = '2.0.0'
6
6
  end
@@ -23,5 +23,5 @@ Gem::Specification.new do |spec|
23
23
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
24
24
  spec.require_paths = ['lib']
25
25
 
26
- spec.required_ruby_version = '>= 2.7'
26
+ spec.required_ruby_version = '>= 3.0'
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: procrastinator
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robin Miller
@@ -58,14 +58,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: '2.7'
61
+ version: '3.0'
62
62
  required_rubygems_version: !ruby/object:Gem::Requirement
63
63
  requirements:
64
64
  - - ">="
65
65
  - !ruby/object:Gem::Version
66
66
  version: '0'
67
67
  requirements: []
68
- rubygems_version: 3.4.10
68
+ rubygems_version: 3.3.26
69
69
  signing_key:
70
70
  specification_version: 4
71
71
  summary: For apps to put off work until later