Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
petere committed Aug 14, 2024
1 parent 9ce2843 commit e26870b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,27 @@ Defaults to `postgres`.

## Release notes

### v1.1.0

Version 1.1.0 contains bug fixes, enhanced configurability, and
support for the most recent PostgreSQL major version.

- Add support for PostgreSQL 17

- Bug fix: Do not drop physical slots on standby

It would previously also drop physical replication slots on the
standby if they did not exist on the primary. This was never the
intention. Now it only touches logical replication slots.

- New configuration setting: `pg_failover_slots.maintenance_db`

This value was previously hardcoded.

- New configuration setting: `pg_failover_slots.worker_nap_time`

This value was previously hardcoded.

### v1.0.1

Version 1.0.1 fixes several compatibility bugs.
Expand Down
2 changes: 1 addition & 1 deletion pg_failover_slots.c
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
#include "libpq/auth.h"
#include "libpq/libpq.h"

#define PG_FAILOVER_SLOTS_VERSION "1.0.1"
#define PG_FAILOVER_SLOTS_VERSION "1.1.0"

PG_MODULE_MAGIC;

Expand Down

0 comments on commit e26870b

Please sign in to comment.