verified_holidays 0.3.0 → 0.3.1

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: 2bed8b38e0f5129d05664fb50b9f35cf5bb7abb25e0e1eb1dbe2783b1384b729
4
- data.tar.gz: 19d07e7bb5a70f6ef4a40b3149b23ad847a86a9e26538f833a6fa608c8cc911d
3
+ metadata.gz: c9c851b992fdefecb26db75afbe6c4c04d289ad871e355e481d224fb6218f938
4
+ data.tar.gz: bcb850940dc6a86e5b72d877765377e1614f26b92b6848588f45a015d3bbaeec
5
5
  SHA512:
6
- metadata.gz: 9464be5d8d5dc17b89b8c5309ec330da0d0eda7c4c4303fe732a6f2d1af2fbb02af5864b54c1f6b5f88a487cbd00422774fe9e94fa33dfcc895ba9b3f8ba5543
7
- data.tar.gz: 4f2a0ffb8cfa1cc3992fcdaa130c11f6488e09877b3a852b4d36d21ada4daf130cf1393ecd5c20152faf7d4a20b4eea8da7d50a4581700d52d975a8630af5ccd
6
+ metadata.gz: 341026a59a66206f49f91ac8028abc5f9f780541a3283f17449dee6f630020354e6a208f7f9eec8aed9e1181d658645ef657f013754d28ab967e7483595d62ab
7
+ data.tar.gz: 8f67f420814c7bfbbc089604522b331656dc5b27432a9c6899b5267abb9a0eb3eabdb1cc1320c120f46167c34752aa737bf9e3fd10d971eb2aca46ec6c22b6e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.3.1](https://github.com/verified-holidays/verified_holidays/compare/verified_holidays/v0.3.0...verified_holidays/v0.3.1) (2026-04-28)
4
+
5
+
6
+ ### Miscellaneous
7
+
8
+ * add Ruby 4.0 to test matrix ([#24](https://github.com/verified-holidays/verified_holidays/issues/24)) ([46e0715](https://github.com/verified-holidays/verified_holidays/commit/46e0715ffeb94a3fe973c27b579b39ef3e9406c7))
9
+
3
10
  ## [0.3.0](https://github.com/verified-holidays/verified_holidays/compare/verified_holidays-v0.2.2...verified_holidays/v0.3.0) (2026-03-29)
4
11
 
5
12
 
data/README.md CHANGED
@@ -61,21 +61,15 @@ holiday.wday_name # => "Thursday"
61
61
  holiday.week # => "Thursday" (alias for wday_name)
62
62
  ```
63
63
 
64
- ## Migration from holiday_jp
64
+ ## Compatibility with holiday_jp
65
65
 
66
- Replace:
67
-
68
- ```ruby
69
- require "holiday_jp"
70
- ```
71
-
72
- with:
66
+ If you're already using holiday_jp, verified_holidays works as a drop-in replacement:
73
67
 
74
68
  ```ruby
75
69
  require "verified_holidays/holiday_jp_compat"
76
70
  ```
77
71
 
78
- That's it. `HolidayJp.holiday?`, `HolidayJp.between`, and `HolidayJp::Holiday` all work as before.
72
+ HolidayJp.holiday?, HolidayJp.between, and HolidayJp::Holiday all work as before.
79
73
 
80
74
  ## Verification
81
75
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VerifiedHolidays
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: verified_holidays
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kenta Ishizaki