Release V2.0.0

This commit is contained in:
benoit 2024-04-09 16:45:11 +02:00
parent e0589b97a8
commit 807f9b2071
2 changed files with 3 additions and 3 deletions

View file

@ -1,6 +1,6 @@
# Change log
## Unreleased
## check_patroni 2.0.0 - 2024-04-09
### Changed
@ -24,7 +24,7 @@
### Misc
* Improve the documentation for node_is_replica.
* Improve the documentation for `node_is_replica`.
* Improve test coverage by running an HTTP server to fake the Patroni API (#55
by @dlax).
* Work around old pytest versions in type annotations in the test suite.

View file

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