Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump for release version 2.0.3 #103

Merged
merged 3 commits into from
Jan 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [2.0.3]
* Support for event_creation param for Real Time Scheduling [#102]
* Bug fix to accept callback_urls param for Real Time Scheduling [#101]

## [2.0.2]
* Added method to bulk authorize accounts via a service account authentication [#99]

Expand All @@ -22,6 +26,7 @@
## [1.9.3]
* Add support for Element Token generation [#70]

[2.0.3]: https://github.com/cronofy/pycronofy/releases/tag/2.0.3
[2.0.2]: https://github.com/cronofy/pycronofy/releases/tag/2.0.2
[2.0.1]: https://github.com/cronofy/pycronofy/releases/tag/2.0.1
[2.0.0]: https://github.com/cronofy/pycronofy/releases/tag/2.0.0.rc1
Expand All @@ -30,6 +35,8 @@
[1.9.4]: https://github.com/cronofy/pycronofy/releases/tag/1.9.4
[1.9.3]: https://github.com/cronofy/pycronofy/releases/tag/1.9.3

[#102]: https://github.com/cronofy/pycronofy/pull/102
[#101]: https://github.com/cronofy/pycronofy/pull/101
[#99]: https://github.com/cronofy/pycronofy/pull/99
[#95]: https://github.com/cronofy/pycronofy/pull/95
[#89]: https://github.com/cronofy/pycronofy/pull/89
Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: pycronofy
Version: 2.0.2
Version: 2.0.3
Summary: Python wrapper for Cronofy
Home-page: https://github.com/cronofy/pycronofy
Author: VenueBook
Expand Down
2 changes: 1 addition & 1 deletion pycronofy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from pycronofy.client import Client # noqa: F401
from pycronofy import settings
__version__ = '2.0.2'
__version__ = '2.0.3'
__name__ = 'PyCronofy'

"""
Expand Down
Loading