diff --git a/CHANGES b/CHANGES new file mode 100644 index 000000000..d3a3905af --- /dev/null +++ b/CHANGES @@ -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 diff --git a/holidays.py b/holidays.py index 721978ef1..920877d65 100644 --- a/holidays.py +++ b/holidays.py @@ -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 # Website: https://github.com/ryanss/holidays.py # License: MIT (see LICENSE file) -__version__ = '0.1-dev' +__version__ = '0.2' from datetime import date, datetime diff --git a/setup.py b/setup.py index 40d2a42c0..1e486c513 100644 --- a/setup.py +++ b/setup.py @@ -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 # Website: https://github.com/ryanss/holidays.py @@ -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', diff --git a/tests.py b/tests.py index 2d558594d..522fb946e 100644 --- a/tests.py +++ b/tests.py @@ -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 # Website: https://github.com/ryanss/holidays.py