Skip to content

Commit cf5b848

Browse files
authored
Merge pull request vacanza#3597 from vacanza/dev
v0.98
2 parents 87d4303 + 2c33c61 commit cf5b848

47 files changed

Lines changed: 2562 additions & 943 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci-cd.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,12 @@ jobs:
4242
- name: Install Python
4343
run: uv python install "$UV_PYTHON"
4444

45+
- name: Cache pre-commit environments
46+
uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
47+
with:
48+
key: pre-commit-${{ runner.os }}-${{ hashFiles('.pre-commit-config.yaml') }}
49+
path: ~/.cache/pre-commit
50+
4551
- name: Run pre-commit
4652
run: uv tool run --with pre-commit-uv pre-commit run --show-diff-on-failure --color=always --all-files
4753

@@ -57,12 +63,12 @@ jobs:
5763
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5864

5965
- name: Initialize CodeQL
60-
uses: github/codeql-action/init@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
66+
uses: github/codeql-action/init@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
6167
with:
6268
languages: python
6369

6470
- name: Perform CodeQL Analysis
65-
uses: github/codeql-action/analyze@95e58e9a2cdfd71adc6e0353d5c52f41a045d225 # v4.35.2
71+
uses: github/codeql-action/analyze@e46ed2cbd01164d986452f91f178727624ae40d7 # v4.35.3
6672
with:
6773
category: '/language:python'
6874

.github/workflows/prl-labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
pull-requests: write
1111
runs-on: ubuntu-24.04
1212
steps:
13-
- uses: actions/labeler@634933edcd8ababfe52f92936142cc22ac488b1b # v6.0.1
13+
- uses: actions/labeler@f27b608878404679385c85cfa523b85ccb86e213 # v6.1.0

.pre-commit-config.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ repos:
6868
rev: 6e10264313f53d6247a8b1b984f5b5ccf50ba539 # v2.21.0
6969
hooks:
7070
- id: pyproject-fmt
71+
additional_dependencies:
72+
- toml-fmt-common<1.3.3
7173

7274
- repo: local
7375
hooks:

CHANGES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## Version 0.98
2+
3+
Released June 1, 2026
4+
5+
- Add NASDAQ (XNAS) holidays (#3586 by @pareshjoshij)
6+
- Update United Arab Emirates holidays: fix Thai localization (#3596 by @KJhellico)
7+
- Update Bhutan holidays (#3590 by @KJhellico)
8+
- Update l10n test: check .po files for missing entries comments (#3594 by @KJhellico)
9+
- Add 2025-2026 Islamic holidays exact dates for Indonesia and Philippines (#3591 by @akshiDhi)
10+
- Add Tibetan calendar generator (#3330 by @Abiram08, @KJhellico)
11+
- Add pre-commit cache (#3589 by @arkid15r)
12+
113
## Version 0.97
214

315
Released May 18, 2026

CONTRIBUTORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Aart Goossens
44
Abdelkhalek Boukli Hacene
55
Abheelash Mishra
66
Akos Furton
7+
Akshita Dhiman
78
Alejandro Antunes
89
Aleksei Zhuchkov
910
Alexander Schulze

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1987,6 +1987,13 @@ code when available. The following financial markets are available:
19871987
<td></td>
19881988
</tr>
19891989
<tr>
1990+
<td>NASDAQ</td>
1991+
<td>XNAS</td>
1992+
<td>National Association of Securities Dealers Automated Quotations (NASDAQ) holidays</td>
1993+
<td></td>
1994+
<td>HALF_DAY</td>
1995+
</tr>
1996+
<tr>
19901997
<td>National Stock Exchange of India</td>
19911998
<td>XNSE</td>
19921999
<td>National Stock Exchange of India market holidays</td>
@@ -1996,7 +2003,7 @@ code when available. The following financial markets are available:
19962003
<tr>
19972004
<td>New York Stock Exchange</td>
19982005
<td>XNYS</td>
1999-
<td>NYSE market holidays (used by all other US-exchanges, including NASDAQ, etc.)</td>
2006+
<td>NYSE market holidays</td>
20002007
<td></td>
20012008
<td>HALF_DAY</td>
20022009
</tr>

SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
| Version | Supported |
66
|---------| ------------------ |
7-
| 0.97 | :white_check_mark: |
8-
| < 0.97 | :x: |
7+
| 0.98 | :white_check_mark: |
8+
| < 0.98 | :x: |
99

1010
## Reporting a Vulnerability
1111

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.97
1+
0.98

0 commit comments

Comments
 (0)