Skip to content

Commit

Permalink
Release version 0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanss committed Aug 28, 2014
1 parent fe877d6 commit 7906f34
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 12 deletions.
19 changes: 19 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Version 0.2
===========

Released August 28, 2014

- Each country is now initialized with its own individual class (see examples
in README). This is a backward incompatible API change.
- Adds support for Python 3.2, 3.3, 3.4, and PyPy
- All code now conforms to PEP8 standards


Version 0.1
===========

Released August 1, 2014

- Initial release
- Support for Python 2.5, 2.6, 2.7
- Includes federal and provincial holidays for Canada, United States
8 changes: 4 additions & 4 deletions holidays.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# holidays.py
# -----------
# A fast, efficient Python library for generating country-specific lists of
# holidays on the fly which aims to make determining whether a specific date
# is a hoiday as fast and flexible as possible.
# A fast, efficient Python library for generating country-specific sets of
# holidays on the fly. It aims to make determining whether a specific date is
# a holiday as fast and flexible as possible.
#
# Author: ryanss <[email protected]>
# Website: https://github.com/ryanss/holidays.py
# License: MIT (see LICENSE file)

__version__ = '0.1-dev'
__version__ = '0.2'


from datetime import date, datetime
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# holidays.py
# -----------
# A fast, efficient Python library for generating country-specific lists of
# holidays on the fly which aims to make determining whether a specific date
# is a hoiday as fast and flexible as possible.
# A fast, efficient Python library for generating country-specific sets of
# holidays on the fly. It aims to make determining whether a specific date is
# a holiday as fast and flexible as possible.
#
# Author: ryanss <[email protected]>
# Website: https://github.com/ryanss/holidays.py
Expand All @@ -25,12 +25,12 @@
url='https://github.com/ryanss/holidays.py',
license='MIT',
py_modules=['holidays'],
description='Generates country-specific lists of statutory holidays',
description='Generates country-specific sets of holidays on the fly',
long_description=open('README.rst').read(),
install_requires=['python-dateutil'],
platforms='any',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
Expand Down
6 changes: 3 additions & 3 deletions tests.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# holidays.py
# -----------
# A fast, efficient Python library for generating country-specific lists of
# holidays on the fly which aims to make determining whether a specific date
# is a hoiday as fast and flexible as possible.
# A fast, efficient Python library for generating country-specific sets of
# holidays on the fly. It aims to make determining whether a specific date is
# a holiday as fast and flexible as possible.
#
# Author: ryanss <[email protected]>
# Website: https://github.com/ryanss/holidays.py
Expand Down

0 comments on commit 7906f34

Please sign in to comment.