Skip to content

Commit

Permalink
release 0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lidaobing committed Dec 7, 2023
1 parent 4e242d2 commit a6e19b7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion lunardate.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: lunardate
Version: 0.2.1
Version: 0.2.2
Summary: A Chinese Calendar Library in Pure Python
Home-page: https://github.com/lidaobing/python-lunardate
Author: LI Daobing
Expand Down Expand Up @@ -106,6 +106,11 @@ Usage
>>> after_leap_month.isLeapMonth
False

>>> LunarDate.leapMonthForYear(2023)
2
>>> LunarDate.leapMonthForYear(2022)
None

Limits
------

Expand Down
7 changes: 6 additions & 1 deletion lunardate.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,11 @@
>>> after_leap_month.isLeapMonth
False
>>> LunarDate.leapMonthForYear(2023)
2
>>> LunarDate.leapMonthForYear(2022)
None
Limits
------
Expand All @@ -108,7 +113,7 @@

import datetime

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

class LunarDate(object):
Expand Down

0 comments on commit a6e19b7

Please sign in to comment.