From ba047114c933a9f5d2701376505b5600591d0cb7 Mon Sep 17 00:00:00 2001 From: lucasheld Date: Tue, 29 Aug 2023 18:41:23 +0200 Subject: [PATCH] bump version to 1.2.0 --- CHANGELOG.md | 13 ++++++++++++- README.md | 2 +- uptime_kuma_api/__version__.py | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b00676..e1dbb82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,19 @@ ## Changelog +### Release 1.2.0 + +#### Features +- add support for uptime kuma 1.23.0 and 1.23.1 + +#### Bugfixes +- remove `name` from maintenance monitors and status pages +- rstip url globally +- convert sendUrl from bool to int +- validate accepted status codes types + ### Release 1.1.0 -#### Feature +#### Features - add support for uptime kuma 1.22.0 and 1.22.1 ### Release 1.0.1 diff --git a/README.md b/README.md index dca3d22..edd842e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Supported Uptime Kuma versions: | Uptime Kuma | uptime-kuma-api | |-----------------|-----------------| -| 1.21.3 - 1.22.1 | 1.0.0 - 1.1.0 | +| 1.21.3 - 1.23.1 | 1.0.0 - 1.2.0 | | 1.17.0 - 1.21.2 | 0.1.0 - 0.13.0 | Installation diff --git a/uptime_kuma_api/__version__.py b/uptime_kuma_api/__version__.py index a076d02..ef73667 100644 --- a/uptime_kuma_api/__version__.py +++ b/uptime_kuma_api/__version__.py @@ -1,5 +1,5 @@ __title__ = "uptime_kuma_api" -__version__ = "1.1.0" +__version__ = "1.2.0" __author__ = "Lucas Held" __license__ = "MIT" __copyright__ = "Copyright 2023 Lucas Held"