Skip to content

Commit

Permalink
Bump version: 1.4.0 → 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LKI committed Nov 26, 2020
1 parent 5d81a8f commit 56166a8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Version 1.5.0
> on 2020-11-26
* **FEAT**: 支持 2021年 的节假日

## Version 1.4.0
> on 2020-01-27
Expand Down
2 changes: 1 addition & 1 deletion chinese_calendar/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
is_workday,
)

__version__ = "1.4.0"
__version__ = "1.5.0"
__all__ = [
"Holiday",
"holidays",
Expand Down
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[aliases]
release = sdist bdist_wheel upload

[bdist_wheel]
universal = 1

[bumpversion]
current_version = 1.4.0
current_version = 1.5.0
commit = True
files = chinese_calendar/__init__.py
tag = True
tag_name = {new_version}

[aliases]
release = sdist bdist_wheel upload

[bdist_wheel]
universal = 1

[coverage:run]
branch = True
include = chinese_calendar/*
omit = tests/*

[flake8]
max-line-length = 120
ignore =
W503, # https://github.com/python/black/issues/52
E203, # https://github.com/python/black#slices
ignore =
W503, # https://github.com/python/black/issues/52
E203, # https://github.com/python/black#slices

[tool:isort]
case_sensitive = True
Expand Down

0 comments on commit 56166a8

Please sign in to comment.