opening_hours 3.9.0-beta.0 → 3.9.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.
- package/CHANGELOG.rst +8 -1
- package/Makefile +5 -11
- package/README.md +2 -1
- package/package.json +9 -1
package/CHANGELOG.rst
CHANGED
|
@@ -164,7 +164,12 @@ Thanks for helping by allowing employees to work on the project during work hour
|
|
|
164
164
|
master_ - unreleased
|
|
165
165
|
--------------------
|
|
166
166
|
|
|
167
|
-
.. _master: https://github.com/opening-hours/opening_hours.js/compare/v3.
|
|
167
|
+
.. _master: https://github.com/opening-hours/opening_hours.js/compare/v3.9.0...master
|
|
168
|
+
|
|
169
|
+
v3.9.0_ - 2025-05-31
|
|
170
|
+
--------------------
|
|
171
|
+
|
|
172
|
+
.. _v3.9.0: https://github.com/opening-hours/opening_hours.js/compare/v3.8.0...v3.9.0
|
|
168
173
|
|
|
169
174
|
`v3.9.0 milestone <https://github.com/opening-hours/opening_hours.js/issues?q=milestone%3Av3.9.0+is%3Aclosed>`__
|
|
170
175
|
|
|
@@ -209,6 +214,8 @@ Changed
|
|
|
209
214
|
* [chore] Also build sourcemap to minified files (#468)
|
|
210
215
|
* [chore] Add code-style-check to CI (#468)
|
|
211
216
|
* [chore] Change benchmark script to esm (#468)
|
|
217
|
+
* [ci] switch to LTS Node.js version for code style check in workflow (#488)
|
|
218
|
+
* [ci] update supported Node.js versions in CI workflow (#488)
|
|
212
219
|
|
|
213
220
|
Fixed
|
|
214
221
|
~~~~~
|
package/Makefile
CHANGED
|
@@ -226,21 +226,15 @@ check-html:
|
|
|
226
226
|
|
|
227
227
|
## release {{{
|
|
228
228
|
|
|
229
|
-
|
|
230
|
-
release-versionbump: package.json bower.json CHANGELOG.rst
|
|
231
|
-
editor $?
|
|
232
|
-
sh -c 'git commit --all --message "Release version $$(jq --raw-output '.version' '$<')"'
|
|
233
|
-
|
|
234
|
-
.PHONY: release-prepare
|
|
235
|
-
release-prepare: package.json taginfo.json check-holidays update-dependency-versions doctoc check
|
|
229
|
+
# Run `npx commit-and-tag-version`.
|
|
236
230
|
|
|
237
231
|
.PHONY: release-local
|
|
238
|
-
release-local: package.json
|
|
239
|
-
git tag --sign --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" --message "
|
|
232
|
+
release-local: package.json
|
|
233
|
+
git tag --sign --local-user "$(RELEASE_OPENPGP_FINGERPRINT)" --message "chore(release): $(shell jq --raw-output '.version' $<)" "v$(shell jq --raw-output '.version' $<)"
|
|
240
234
|
|
|
241
235
|
.PHONY: release-publish
|
|
242
|
-
|
|
243
|
-
|
|
236
|
+
# First source file is referenced!
|
|
237
|
+
# Might be better: https://docs.npmjs.com/cli/version
|
|
244
238
|
release-publish:
|
|
245
239
|
git push --follow-tags
|
|
246
240
|
npm publish
|
package/README.md
CHANGED
|
@@ -577,7 +577,7 @@ Almost everything from opening_hours definition is supported, as well as some ex
|
|
|
577
577
|
|
|
578
578
|
- Countries with PH definition:
|
|
579
579
|
|
|
580
|
-
- Argentina
|
|
580
|
+
- [Argentina][ph-ar]
|
|
581
581
|
- [Australia][ph-au]
|
|
582
582
|
- [Austria][ph-at] ([footnotes][ph-at] are ignored)
|
|
583
583
|
- [Belgium][ph-be] (See [issue #115](https://github.com/opening-hours/opening_hours.js/issues/115) for details)
|
|
@@ -950,6 +950,7 @@ Edit: This does also work on npmjs in this short version … -->
|
|
|
950
950
|
[hc]: https://gitlab.com/ypid/hc
|
|
951
951
|
[evaluation tool]: https://openingh.openstreetmap.de/evaluation_tool/
|
|
952
952
|
[schulferien.org]: https://www.schulferien.org/deutschland/ical/
|
|
953
|
+
[ph-ar]: https://en.wikipedia.org/wiki/Public_holidays_in_Argentina
|
|
953
954
|
[ph-at]: https://de.wikipedia.org/wiki/Feiertage_in_%C3%96sterreich
|
|
954
955
|
[ph-au]: https://en.wikipedia.org/wiki/Public_holidays_in_Australia
|
|
955
956
|
[ph-be]: https://de.wikipedia.org/wiki/Feiertage_in_Belgien
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"typings": "./types/index.d.ts",
|
|
5
5
|
"types": "./types/index.d.ts",
|
|
6
6
|
"description": "Library to parse and process opening_hours tag from OpenStreetMap data",
|
|
7
|
-
"version": "3.9.0
|
|
7
|
+
"version": "3.9.0",
|
|
8
8
|
"homepage": "https://github.com/opening-hours/opening_hours.js",
|
|
9
9
|
"author": "Dmitry Marakasov <amdmi3@amdmi3.ru>",
|
|
10
10
|
"maintainers": [
|
|
@@ -64,7 +64,10 @@
|
|
|
64
64
|
"@rollup/plugin-terser": "^0.4.4",
|
|
65
65
|
"@rollup/plugin-yaml": "^4.1.2",
|
|
66
66
|
"colors": "^1.4.0",
|
|
67
|
+
"commit-and-tag-version": "^12.5.1",
|
|
68
|
+
"commitizen": "^4.3.1",
|
|
67
69
|
"country-language": "^0.1.7",
|
|
70
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
68
71
|
"doctoc": "^2.2.1",
|
|
69
72
|
"eslint": "^9.24.0",
|
|
70
73
|
"full-icu": "^1.5.0",
|
|
@@ -87,5 +90,10 @@
|
|
|
87
90
|
},
|
|
88
91
|
"engines": {
|
|
89
92
|
"node": ">=12"
|
|
93
|
+
},
|
|
94
|
+
"config": {
|
|
95
|
+
"commitizen": {
|
|
96
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
97
|
+
}
|
|
90
98
|
}
|
|
91
99
|
}
|