diff --git a/docs/source/change_log.rst b/docs/source/change_log.rst index c95d0e5..6f4d374 100644 --- a/docs/source/change_log.rst +++ b/docs/source/change_log.rst @@ -3,6 +3,20 @@ Change log ========== +v2.5.1 +~~~~~~ + +API +--- +* Fixed comment typo + +Core +---- +* None + +Backward compatibility +---------------------- +* Full compatibility v2.5.0 ~~~~~~ diff --git a/docs/source/conf.py b/docs/source/conf.py index 4acb4a6..8c0063f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -179,7 +179,7 @@ autodoc_member_order = 'bysource' autodoc_typehints = "description" -googleanalytics_id = 'G-PT0TPQSZ56' +googleanalytics_id = 'G-X3GDQM7S79' html_css_files = [ 'css/custom.css', diff --git a/gcsa/_services/events_service.py b/gcsa/_services/events_service.py index fb22662..4ca9c91 100644 --- a/gcsa/_services/events_service.py +++ b/gcsa/_services/events_service.py @@ -69,7 +69,7 @@ def get_events( """Lists events. :param time_min: - Staring date/datetime + Starting date/datetime :param time_max: Ending date/datetime :param order_by: diff --git a/setup.py b/setup.py index 0a8ee8d..d1de21d 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ here = os.path.abspath(os.path.dirname(__file__)) -VERSION = '2.5.0' +VERSION = '2.5.1' class UploadCommand(Command):