timely 0.12.0 → 0.13.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a8539b3725c833746cf31c1d13ffcd8d1a1f76d1e3fae9d06008898864cc6fa3
4
- data.tar.gz: 5d748cb1025dd1f359433f4e543881bb5b28c6e988fdec85ab63a4fa04736548
3
+ metadata.gz: ef6629b2db8417d5ba9d5506bf8b68ae9211bfc75c372c88c8221d5486497de5
4
+ data.tar.gz: a8989c57a326a2efbd1e8e204d028eb38e8472a3459949295b672803e752930e
5
5
  SHA512:
6
- metadata.gz: 8d035c9679c8ab9e0435d8a942404f9ed141f710328b5e95a555b43d96f5b114f8552a93758c56afbf46aba20b221ef44bb6fdde687432dd11893cff1fc52044
7
- data.tar.gz: d573289fbef814691ac96847c178e0750eed4f3193754efa9ec259df849e49ec885358c7bb7b3a87e4b54211c5d49633e285f94d08df4520deb3a31bcd69acb7
6
+ metadata.gz: 90b550e3990d4026403ea150fd273975ba38f221a6dc065dcd89b9e0545088c1df2f19ff22470a96f50f6829e950f3f710a1985ce42184c78ddba3290ed0297f
7
+ data.tar.gz: dc5d1a349c7d9325aa2a373471c4cd7fedfba85d8be08d26fa3c2202babd6a00c7ccd36c426111491a2bfa104c58d0386a135a67062e9d7cd93424c5dbc15498
data/CHANGELOG.md CHANGED
@@ -1,77 +1,81 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.13.0
4
+
5
+ - [PLAT-1175] Update to Ruby 3.2
6
+
3
7
  ## 0.12.0
4
8
 
5
- * [PLAT-954] Handle additional `to_s` deprecation on Rails 7
9
+ - [PLAT-954] Handle additional `to_s` deprecation on Rails 7
6
10
 
7
11
  ## 0.11.0
8
12
 
9
- * [PLAT-346] Handle `to_s` deprecation on Rails 7
13
+ - [PLAT-346] Handle `to_s` deprecation on Rails 7
10
14
 
11
15
  ## 0.10.0
12
16
 
13
- * [PLAT-183] Publish coveralls with github actions add ruby 3.1 to test matrix
17
+ - [PLAT-183] Publish coveralls with github actions add ruby 3.1 to test matrix
14
18
 
15
19
  ## 0.9.0
16
20
 
17
- * [TT-8614] Update to build with github actions / ruby 3.0 / rails 6.1
21
+ - [TT-8614] Update to build with github actions / ruby 3.0 / rails 6.1
18
22
 
19
23
  ## 0.8.0
20
24
 
21
- * [TT-6441] Turns out we don't actually need time difference in QT
22
- * [TT-6661] Fix issue when detecting intersecting date groups
25
+ - [TT-6441] Turns out we don't actually need time difference in QT
26
+ - [TT-6661] Fix issue when detecting intersecting date groups
23
27
 
24
28
  ## 0.7.0
25
29
 
26
- * [TT-6441] Due to TimeDifference being unmaintained bring it into the timely library
30
+ - [TT-6441] Due to TimeDifference being unmaintained bring it into the timely library
27
31
 
28
32
  ## 0.6.0
29
33
 
30
- * [TT-6402] Require date group weekdays bit field to be not null/nil
31
- IMPORTANT: Rails projects must add a migration to make this field not null!
32
- * [TT-6401] Remove Rails 3 support, unused methods
34
+ - [TT-6402] Require date group weekdays bit field to be not null/nil
35
+ IMPORTANT: Rails projects must add a migration to make this field not null!
36
+ - [TT-6401] Remove Rails 3 support, unused methods
33
37
 
34
38
  ## 0.5.0
35
39
 
36
- * [TT-6193] Date group scopes for more efficient searches/restrictions
40
+ - [TT-6193] Date group scopes for more efficient searches/restrictions
37
41
 
38
42
  ## 0.4.2
39
43
 
40
- * [TT-5794] Fix belongs_to associations are not explicitly marked optional
44
+ - [TT-5794] Fix belongs_to associations are not explicitly marked optional
41
45
 
42
46
  ## 0.4.1
43
47
 
44
- * [TT-5674] Make multi year date format friendlier
48
+ - [TT-5674] Make multi year date format friendlier
45
49
 
46
50
  ## 0.4.0
47
51
 
48
- * [TT-5648] Fix date_range to string when a single month covers a year period
52
+ - [TT-5648] Fix date_range to string when a single month covers a year period
49
53
 
50
54
  ## 0.3.4
51
55
 
52
- * [TT-4812] Remove bootstrap class from calender tag
56
+ - [TT-4812] Remove bootstrap class from calender tag
53
57
 
54
58
  ## 0.3.3
55
59
 
56
- * Skipped due to mis-tagged version
60
+ - Skipped due to mis-tagged version
57
61
 
58
62
  ## 0.3.2
59
63
 
60
- * [TT-4716] Better exception message when a range is invalid
64
+ - [TT-4716] Better exception message when a range is invalid
61
65
 
62
66
  ## 0.3.1
63
67
 
64
- * Using Fixnum is deprecated
68
+ - Using Fixnum is deprecated
65
69
 
66
70
  ## 0.3.0
67
71
 
68
- * Add time zone awareness for Time#on (e.g. Rails)
69
- * Required Timely.load to load overrides
72
+ - Add time zone awareness for Time#on (e.g. Rails)
73
+ - Required Timely.load to load overrides
70
74
 
71
75
  ## 0.2.0
72
76
 
73
- * Rails 5 support
77
+ - Rails 5 support
74
78
 
75
79
  ## 0.1.0
76
80
 
77
- * Initial release
81
+ - Initial release
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Timely
4
- VERSION = '0.12.0'
4
+ VERSION = '0.13.0'
5
5
  end
data/timely.gemspec CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.files = Dir["CHANGELOG.md", "README.md", "timely.gemspec", "lib/**/*"]
19
19
  spec.executables = []
20
20
  spec.require_paths = ['lib']
21
- spec.required_ruby_version = '>= 2.7'
21
+ spec.required_ruby_version = '>= 3.0'
22
22
 
23
23
  spec.add_development_dependency 'activerecord', '>=6', '<8'
24
24
  spec.add_development_dependency 'activesupport', '>=6', '<8'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: timely
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Noack
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-04 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -253,14 +253,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
253
253
  requirements:
254
254
  - - ">="
255
255
  - !ruby/object:Gem::Version
256
- version: '2.7'
256
+ version: '3.0'
257
257
  required_rubygems_version: !ruby/object:Gem::Requirement
258
258
  requirements:
259
259
  - - ">="
260
260
  - !ruby/object:Gem::Version
261
261
  version: '0'
262
262
  requirements: []
263
- rubygems_version: 3.3.3
263
+ rubygems_version: 3.4.1
264
264
  signing_key:
265
265
  specification_version: 4
266
266
  summary: Set of time, date, weekday related methods.