Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ pip install lunardate

## News

* 0.3.0: drop python2, add typing hint, rename naming to follow pep8
Comment thread
Copilot marked this conversation as resolved.
Outdated
* 0.2.2: add LunarDate.leapMonthForYear; fix bug in year 1899
* 0.2.1: fix bug in year 1956
* 0.2.0: extend year to 2099, thanks to @FuGangqiang
Expand Down
2 changes: 1 addition & 1 deletion lunardate.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.4
Name: lunardate
Version: 0.2.2
Version: 0.3.0
Comment thread
lidaobing marked this conversation as resolved.
Outdated
Summary: A Chinese Calendar Library in Pure Python
Home-page: https://github.com/lidaobing/python-lunardate
Author: LI Daobing
Expand Down
2 changes: 1 addition & 1 deletion lunardate.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
import warnings
from typing import ClassVar, Iterator, Optional, Union, overload

__version__ = "0.2.2"
__version__ = "0.3.0"
__all__ = ['LunarDate']

class LunarDate:
Expand Down
Loading