extend supported data format

This commit is contained in:
Muhan Li 2024-06-04 04:46:06 +08:00
parent f2bd722bd7
commit 4a1dbaaae1
5 changed files with 8 additions and 7 deletions

View File

@ -39,7 +39,7 @@ jobs:
strategy:
matrix:
ghc: ["9.6", "9.8", "latest"]
ghc: ["9.6", "9.8"]
cabal: ["3.10", "latest"]
include:
- ghc: "9.2.8"

View File

@ -2,10 +2,10 @@
// and manually checked on 11/5/2023
// source: https://www.gov.cn/zhengce/content/202310/content_6911527.htm
元旦;2023.12.30-2024.1.1; // 1月1日放假与周末连休。
元旦;2023.12.30-2024.1.1 // 1月1日放假与周末连休。
春节;2024.2.10-2024.2.17;2024.2.4,2024.2.18 // 2月10日至17日放假调休共8天。2月4日星期日、2月18日星期日上班。鼓励各单位结合带薪年休假等制度落实安排职工在除夕2月9日休息。
清明节;2024.4.4-2024.4.6;2024.4.7 // 4月4日至6日放假调休共3天。4月7日星期日上班。
劳动节;2024.5.1-2024.5.5;2024.4.28,2024.5.11 // 5月1日至5日放假调休共5天。4月28日星期日、5月11日星期六上班。
端午节;2024.6.8-2024.6.10; // 6月10日放假与周末连休。
端午节;2024.6.8-2024.6.10 // 6月10日放假与周末连休。
中秋节;2024.9.15-2024.9.17;2024.9.14 // 9月15日至17日放假调休共3天。9月14日星期六上班。
国庆节;2024.10.1-2024.10.7;2024.9.29,2024.10.12 // 10月1日至7日放假调休共7天。9月29日星期日、10月12日星期六上班。

View File

@ -2,8 +2,8 @@
年份开头,形如 2022.txt
数据格式
节日名;放假日期
节日名;放假日期;补班日期
没有补班留空,“;” 不可省略
日期格式
Y.M.D,Y.M.D-Y.M.D

View File

@ -24,7 +24,7 @@ description: Calendar of Public Holidays in China
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
version: 0.2.1.0
-- A short (one-line) description of the package.
-- synopsis:

View File

@ -47,6 +47,7 @@ rawDate _ = return ""
toHolidayRaw :: [String] -> Maybe HolidayRaw
toHolidayRaw [n, r, w] = Just $ HolidayRaw n r w
toHolidayRaw [n, r] = toHolidayRaw [n, r, ""]
toHolidayRaw _ = Nothing
data Holiday = Holiday