FiscalYear 0.4.0 Release Notes
This release contains backwards-incompatible changes, new features, and bug fixes. FiscalYear now requires Python 3.6+. If you need Python 2 support, use the 0.3.2 release.
Backwards-incompatible Changes
quarter
,prev_quarter
, andnext_quarter
, which were deprecated in FiscalYear 0.3.0, have now been removed, please usefiscal_quarter
,prev_fiscal_quarter
, andnext_fiscal_quarter
instead- Many classes and functions that used to accept either an int or an int-like string now only accept an int (#28)
- Python 2 support has been dropped (#26)
New Features
- FiscalYear now includes type hints for 100% of the library, use mypy to check your code (#28)
Bug Fixes
Contributors
This release is thanks to the following contributors:
- @further-reading removed code that changed the default warnings behavior (#22)
- @pala1212 added hash support for all classes (#24)