date-holidays 3.23.13 → 3.23.14

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.24.0](https://github.com/commenthol/date-holidays/compare/3.23.13...3.24.0) (2024-12-12)
4
+
5
+ - fix(IT): state names [c3daf4c4](https://github.com/commenthol/date-holidays/commit/c3daf4c41d0a1532ba23c3fc6762b490abad14e5)
6
+ - feat(IT): add Florence patron saint holiday [82069765](https://github.com/commenthol/date-holidays/commit/82069765d5927d5b1ee040dde46ae47852c1e48b)
7
+ - docs: fix description on calling holidays2json.cjs in README [c674a6ab](https://github.com/commenthol/date-holidays/commit/c674a6abf37fdc5dfba37f0c1c4f0e99694ee959)
8
+
3
9
  ## [3.23.13](https://github.com/commenthol/date-holidays/compare/3.23.12...3.23.13) (2024-11-26)
4
10
 
5
11
  - fix(AU): correct Kings Birthday in Western Australia for 2024 [6a81888e](https://github.com/commenthol/date-holidays/commit/6a81888e56ecab97094183578ea4fb0630e90da0)
package/README.md CHANGED
@@ -359,7 +359,9 @@ Countries: 197
359
359
  ├── IT: Italia
360
360
  │ ├── 25: Lombardy
361
361
  │ │ └── MI: Milan
362
- └── 32: Südtirol, Alto Adige
362
+ ├── 32: Alto Adige
363
+ │ └── 52: Toscana
364
+ │ └── FI: Firenze
363
365
  ├── JE: Jersey
364
366
  ├── JM: Jamaica
365
367
  ├── JP: 日本
@@ -722,7 +724,7 @@ Alternatively you may use the `--omit` option.
722
724
  Manually use
723
725
 
724
726
  ```bash
725
- npx holidays2json --pick US,CA,MX
727
+ ./scripts/holidays2json --pick US,CA,MX
726
728
  ```
727
729
 
728
730
  > **NOTE:** There are some countries which depend on data of others which
@@ -103,7 +103,9 @@ holidays:
103
103
  # VA:
104
104
  # name: Varese
105
105
  "32":
106
- name: Südtirol, Alto Adige
106
+ names:
107
+ de: Südtirol
108
+ it: Alto Adige
107
109
  days:
108
110
  easter 50:
109
111
  _name: easter 50
@@ -172,13 +174,24 @@ holidays:
172
174
  # name: Reggio Emilia
173
175
  # RN:
174
176
  # name: Rimini
175
- # '52':
176
- # name: Tuscany
177
- # regions:
177
+ "52":
178
+ names:
179
+ it: Toscana
180
+ en: Tuscany
181
+ regions:
182
+ FI:
183
+ names:
184
+ it: Firenze
185
+ en: Florence
186
+ days:
187
+ 06-24:
188
+ name:
189
+ it: San Giovanni
190
+ en: Saint John
191
+ type: optional
192
+ note: patron saint of Florence
178
193
  # AR:
179
194
  # name: Arezzo
180
- # FI:
181
- # name: Florence
182
195
  # GR:
183
196
  # name: Grosseto
184
197
  # LI:
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2024-11-26",
2
+ "version": "2024-12-12",
3
3
  "license": "CC-BY-SA-3",
4
4
  "holidays": {
5
5
  "AD": {
@@ -13270,12 +13270,39 @@
13270
13270
  }
13271
13271
  },
13272
13272
  "32": {
13273
- "name": "Südtirol, Alto Adige",
13273
+ "names": {
13274
+ "de": "Südtirol",
13275
+ "it": "Alto Adige"
13276
+ },
13274
13277
  "days": {
13275
13278
  "easter 50": {
13276
13279
  "_name": "easter 50"
13277
13280
  }
13278
13281
  }
13282
+ },
13283
+ "52": {
13284
+ "names": {
13285
+ "it": "Toscana",
13286
+ "en": "Tuscany"
13287
+ },
13288
+ "regions": {
13289
+ "FI": {
13290
+ "names": {
13291
+ "it": "Firenze",
13292
+ "en": "Florence"
13293
+ },
13294
+ "days": {
13295
+ "06-24": {
13296
+ "name": {
13297
+ "it": "San Giovanni",
13298
+ "en": "Saint John"
13299
+ },
13300
+ "type": "optional",
13301
+ "note": "patron saint of Florence"
13302
+ }
13303
+ }
13304
+ }
13305
+ }
13279
13306
  }
13280
13307
  }
13281
13308
  },