diff --git a/CHANGELOG.md b/CHANGELOG.md index 689f8c9..9dedff8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,19 @@ # iCalendar Timeseries Server Changelog + +## Version 0.3.3 + +### Changes + + +- Fix type confusion bug in recurring events +- Remove pytz dependency in favor of dateutil.tz + + + + + ## Version 0.3.2 diff --git a/README.md b/README.md index 41bb59c..c762283 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,6 @@ The server would transform this into the following API response: - `icalendar`: Parse iCalendar - `isodate`: Parse ISO-8601 time periods - `jinja2`: Template value replacements -- `pytz`: Work with timezones ## Configuration diff --git a/icalendar_timeseries_server/__init__.py b/icalendar_timeseries_server/__init__.py index 8299a60..2fd20b5 100644 --- a/icalendar_timeseries_server/__init__.py +++ b/icalendar_timeseries_server/__init__.py @@ -1,2 +1,2 @@ -__version__ = '0.3.2' +__version__ = '0.3.3'