Skip to content

Commit

Permalink
bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasheld committed May 25, 2023
1 parent 1a3f073 commit a1b30b7
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
## Changelog

### Release 1.0.0

#### Feature
- drop support for Uptime Kuma versions < 1.21.3
- add `api_ssl_verify`, `api_wait_events`, `api_timeout` parameters
- add support for uptime kuma 1.21.3
- publish collection to ansible-galaxy

#### Bugfixes
- adjust notification arguments to uptime-kuma-api changes

#### BREAKING CHANGES
- Python 3.7+ required
- maintenance parameter `timezone` renamed to `timezoneOption`
- Removed the `api_wait_timeout` parameter. Use the new `api_timeout` parameter instead. The `api_timeout` parameter specifies how many seconds the client should wait for the connection, an expected event or a server response.
- Uptime Kuma versions < 1.21.3 are not supported in ansible-uptime-kuma 1.0.0+

### Release 0.14.0

#### Feature
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ This collection contains modules that allow to configure [Uptime Kuma](https://g

Python version 3.7+ and Ansible version 2.10+ are required.

Supported Uptime Kuma versions: 1.17.0 - 1.21.2
Supported Uptime Kuma versions:

| Uptime Kuma | ansible-uptime-kuma | uptime-kuma-api |
|-----------------|---------------------|-----------------|
| 1.21.3 | 1.0.0 | 1.0.0+ |
| 1.17.0 - 1.21.2 | 0.1.0 - 0.14.0 | 0.1.0 - 0.13.0 |


## Installation
Expand Down
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: lucasheld
name: uptime_kuma
version: 0.14.0
version: 1.0.0
readme: README.md
authors:
- Lucas Held <[email protected]>
Expand Down
2 changes: 1 addition & 1 deletion run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ if [ $version ] && [ "$version" != "all" ]
then
versions=("$version")
else
versions=(1.21.2 1.21.1 1.20.2 1.19.6 1.18.5 1.17.1)
versions=(1.21.3)
fi

unit_targets=""
Expand Down

0 comments on commit a1b30b7

Please sign in to comment.