Release 1.0.0

This commit is contained in:
benoit 2023-08-28 12:09:16 +02:00
parent f0c2a243f0
commit 68b230ccb2
3 changed files with 13 additions and 2 deletions

View file

@ -4,6 +4,16 @@
### Added
### Fixed
### Misc
## check_patroni 1.0.0 - 2023-08-28
Check patroni is now tagged as Production/Stable.
### Added
* Add `sync_standby` as a valid replica type for `cluster_has_replica`. (contributed by @mattpoel)
* Add info and options (`--sync-warning` and `--sync-critical`) about sync replica to `cluster_has_replica`.
* Add a new service `cluster_has_scheduled_action` to warn of any scheduled switchover or restart.
@ -21,6 +31,7 @@
* Create CHANGELOG.md
* Add tests for the output of the scripts in addition to the return code
* Documentation in CONTRIBUTING.md
## check_patroni 0.2.0 - 2023-03-20

View file

@ -1,5 +1,5 @@
import logging
__version__ = "0.2.0"
__version__ = "1.0.0"
_log: logging.Logger = logging.getLogger(__name__)

View file

@ -29,7 +29,7 @@ setup(
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 4 - Beta", # "Development Status :: 5 - Production/Stable",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: PostgreSQL License",
"Programming Language :: Python :: 3",