Skip to content

Commit f741267

Browse files
committed
Prepare for release 2.2
* Add CHANGELOG entry for the release * Update license years * Update version number throughout * Update version related tests
1 parent 5b36298 commit f741267

14 files changed

Lines changed: 32 additions & 17 deletions

File tree

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
1-
### pg_auto_failover v2.1 (November 24, 2022) ###
1+
### pg_auto_failover v2.2 (February 01, 2025) ###
2+
3+
This release includes support for Postgres major version 17 as well as dependency and documentation updates. It also drops support for outdated Postgres major versions 11 and 12.
4+
5+
### Added
6+
* Support for Postgres major version 17. (#1061)
7+
8+
### Fixes
9+
* Switch from docker-compose to the one build into docker (docker compose) (#1065)
10+
11+
### Changed
12+
* Documentation updated to reference latest Debian and PostgreSQL releases (#1061)
13+
* Support dropped for outdated Postgres major versions 11 and 12. (#1067)
14+
* Citus version updated to v13.0.0 (#1064)
15+
16+
### pg_auto_failover v2.1 (November 24, 2023) ###
217

318
This release incorporates support for Postgres major version 16, some bug fixes,
419
documentation updates, and usual code maintenance work.
520

621
### Added
7-
* Support for Postgres major version 16. (#1013, #1006, )
22+
* Support for Postgres major version 16. (#1013, #1006)
823
* Improve on documentation, Docker images, and tutorials. (#964, #954, #947)
924
* PGDATABASE as default create node --dbname. (#956)
1025
* Add chapters to the documentation navigation. (#954)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ def __init__(self, **options):
7171
# built documents.
7272
#
7373
# The short X.Y version.
74-
version = "2.1"
74+
version = "2.2"
7575
# The full version, including alpha/beta/rc tags.
76-
release = "2.1"
76+
release = "2.2"
7777

7878
# The language for content autogenerated by Sphinx. Refer to documentation
7979
# for a list of supported languages.

src/bin/lib/parson/parson.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SPDX-License-Identifier: MIT
33
44
Parson 1.5.3 (https://github.com/kgabis/parson)
5-
Copyright (c) 2012 - 2023 Krzysztof Gabis
5+
Copyright (c) 2012 - 2025 Krzysztof Gabis
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

src/bin/lib/parson/parson.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SPDX-License-Identifier: MIT
33
44
Parson 1.5.3 (https://github.com/kgabis/parson)
5-
Copyright (c) 2012 - 2023 Krzysztof Gabis
5+
Copyright (c) 2012 - 2025 Krzysztof Gabis
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

src/bin/lib/parson/tests.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
SPDX-License-Identifier: MIT
33
44
Parson (https://github.com/kgabis/parson)
5-
Copyright (c) 2012 - 2023 Krzysztof Gabis
5+
Copyright (c) 2012 - 2025 Krzysztof Gabis
66
77
Permission is hereby granted, free of charge, to any person obtaining a copy
88
of this software and associated documentation files (the "Software"), to deal

src/bin/lib/pg/snprintf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 1983, 1995, 1996 Eric P. Allman
33
* Copyright (c) 1988, 1993
44
* The Regents of the University of California. All rights reserved.
5-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
5+
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
66
*
77
* Redistribution and use in source and binary forms, with or without
88
* modification, are permitted provided that the following conditions

src/bin/lib/pg/snprintf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* port.h
44
* Header for src/port/ compatibility functions.
55
*
6-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* src/include/port.h

src/bin/lib/pg/strerror.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* strerror.c
44
* Replacements for standard strerror() and strerror_r() functions
55
*
6-
* Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
6+
* Portions Copyright (c) 1996-2025, PostgreSQL Global Development Group
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
*

src/bin/pg_autoctl/azure.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,8 +1141,8 @@ azure_prepare_target_versions(KeyVal *env)
11411141

11421142
/* default values */
11431143
sformat(env->values[0], MAXCONNINFO, "13"); /* AZ_PG_VERSION */
1144-
sformat(env->values[1], MAXCONNINFO, "2.1"); /* AZ_PGAF_DEB_VERSION */
1145-
sformat(env->values[2], MAXCONNINFO, "2.1-1"); /* AZ_PGAF_DEB_REVISION */
1144+
sformat(env->values[1], MAXCONNINFO, "2.2"); /* AZ_PGAF_DEB_VERSION */
1145+
sformat(env->values[2], MAXCONNINFO, "2.2-1"); /* AZ_PGAF_DEB_REVISION */
11461146

11471147
for (int i = 0; i < 3; i++)
11481148
{

src/bin/pg_autoctl/defaults.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#define PG_AUTOCTL_VERSION GIT_VERSION
2020

2121
/* version of the extension that we requite to talk to on the monitor */
22-
#define PG_AUTOCTL_EXTENSION_VERSION "2.1"
22+
#define PG_AUTOCTL_EXTENSION_VERSION "2.2"
2323

2424
/* environment variable to use to make DEBUG facilities available */
2525
#define PG_AUTOCTL_DEBUG "PG_AUTOCTL_DEBUG"

0 commit comments

Comments
 (0)