Skip to content

Commit

Permalink
Merge pull request #1029 from dr-prodigy/beta
Browse files Browse the repository at this point in the history
v.0.21.13
  • Loading branch information
arkid15r authored Mar 15, 2023
2 parents 80927d6 + f740404 commit 4a6ae22
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
pip install --upgrade .
- name: Build Distribution
run: |
make build
make package
- name: Publish Package
uses: pypa/[email protected]
Expand Down
3 changes: 2 additions & 1 deletion CHANGES
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
Version 0.21.12
Version 0.21.13
===============

Released March 15, 2023

- Refactor NYSE holidays, #1018 (@KJhellico)
- Fix distribution build, #1028 (@arkid15r)
- Fix the documentation build warning, #1026 (@arkid15r)
- Optimize TestAllInSameYear::test_all_countries test, #1001 (@arkid15r)
- Update Canada localization: fr, #1015 (@KJhellico)
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ include CHANGES
include holidays/py.typed
recursive-include docs *
recursive-include holidays *.py
recursive-include holidays/locale *.(mp)o
recursive-include holidays/locale *.mo
recursive-include holidays/locale *.po
recursive-include scripts/l10n *.py
recursive-include tests *.py
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,20 +1,16 @@
help:
@echo "Usage: make <target>"
@echo " build build distribution"
@echo " check run pre-commit and tests"
@echo " coverage identify code not covered with tests"
@echo " doc run documentation build process"
@echo " help show summary of available commands"
@echo " l10n update .pot and .po files"
@echo " package build package distribution"
@echo " pre-commit run pre-commit against all files"
@echo " setup setup development environment"
@echo " test run tests (in parallel)"
@echo " tox run tox (in parallel)"

build:
scripts/l10n/generate_mo_files.py
python -m build

check:
make pre-commit
make doc
Expand All @@ -31,6 +27,10 @@ l10n:
scripts/l10n/generate_po_files.py
scripts/l10n/generate_mo_files.py

package:
scripts/l10n/generate_mo_files.py
python -m build

pre-commit:
pre-commit run --all-files

Expand Down
2 changes: 1 addition & 1 deletion holidays/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
from holidays.holiday_base import *
from holidays.utils import *

__version__ = "0.21.12"
__version__ = "0.21.13"
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ python_requires = >=3.7
include_package_data = True

[bumpversion]
current_version = 0.21.12
current_version = 0.21.13

[flake8]
per-file-ignores =
Expand Down

0 comments on commit 4a6ae22

Please sign in to comment.