diff --git a/CHANGELOG.md b/CHANGELOG.md index b6ae0ad9..df11dd96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog ## 3.dev +* Fix: Using icalendar's tzinfo on created datetime to fix issue with icalendar +* Enhancement: Added free-busy report +* Enhancement: Added 'max_freebusy_occurrences` setting to avoid potential DOS on reports +* Improve: Refactored some date parsing code ## 3.2.2 * Enhancement: add support for auth.type=denyall (will be default for security reasons in upcoming releases) @@ -53,17 +57,6 @@ * Dependency: limit typegard version < 3 * General: code cosmetics -## 3.2.0.a2 - -* Fix for free-busy `fbtype` statuses - -## 3.2.0.a1 - -* Added free-busy report -* Using icalendar's tzinfo on created datetime fix issue with icalendar -* Added 'max_freebusy_occurrences` setting to avoid potential DOS on reports -* Refactored some date parsing code - ## 3.1.8 * Fix setuptools requirement if installing wheel diff --git a/setup.py b/setup.py index cc3b1c25..f5d906a2 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ from setuptools import find_packages, setup # When the version is updated, a new section in the CHANGELOG.md file must be # added too. -VERSION = "3.2.0.a2" +VERSION = "3.dev" with open("README.md", encoding="utf-8") as f: long_description = f.read()