From 37e1fd6d6fef651a8d5365ee067279dec925e559 Mon Sep 17 00:00:00 2001 From: lucasheld Date: Fri, 23 Sep 2022 19:18:35 +0200 Subject: [PATCH] bump version to 0.3.0 x --- CHANGELOG.md | 19 ++++++++++++++++++- uptime_kuma_api/__version__.py | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9dbece7..f8b507d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,23 +1,40 @@ ## Changelog +### Release 0.3.0 + +#### Feature +- support autoLogin for enabled disableAuth + +#### Bugfix +- set_settings password is only required if disableAuth is enabled +- increase event wait time to receive the slow statusPageList event + ### Release 0.2.2 +#### Bugfix - remove `tags` from monitor input -- create test objects with available arguments - convert monitor notificationIDList only once +#### Test +- create test objects with available arguments + ### Release 0.2.1 +#### Bugfix - generate pushToken on push monitor save - convert monitor notificationIDList return value ### Release 0.2.0 +#### Feature - support for uptime kuma 1.18.0 + +#### Bugfix - convert values on monitor edit ### Release 0.1.1 +#### Bugfix - implement 2FA login - allow to add monitors to status pages - do not block certain methods diff --git a/uptime_kuma_api/__version__.py b/uptime_kuma_api/__version__.py index 23e99de..bba1770 100644 --- a/uptime_kuma_api/__version__.py +++ b/uptime_kuma_api/__version__.py @@ -1,5 +1,5 @@ __title__ = "uptime_kuma_api" -__version__ = "0.2.2" +__version__ = "0.3.0" __author__ = "Lucas Held" __license__ = "MIT" __copyright__ = "Copyright 2022 Lucas Held"