Skip to content

Commit 50b3ec8

Browse files
committed
Bump percona version to 17.5.3
This is the version we're about to release.
1 parent d55240d commit 50b3ec8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

ci_scripts/env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
export PERCONA_SERVER_VERSION=17.5.2
3+
export PERCONA_SERVER_VERSION=17.5.3

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2856,7 +2856,7 @@ cat >>confdefs.h <<_ACEOF
28562856
_ACEOF
28572857

28582858

2859-
PG_PERCONAVERSION=2
2859+
PG_PERCONAVERSION=3
28602860

28612861
cat >>confdefs.h <<_ACEOF
28622862
#define PG_PERCONAVERSION "$PG_PERCONAVERSION"

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ AC_DEFINE_UNQUOTED(PG_MAJORVERSION, "$PG_MAJORVERSION", [PostgreSQL major versio
3737
AC_DEFINE_UNQUOTED(PG_MAJORVERSION_NUM, $PG_MAJORVERSION, [PostgreSQL major version number])
3838
AC_DEFINE_UNQUOTED(PG_MINORVERSION_NUM, $PG_MINORVERSION, [PostgreSQL minor version number])
3939

40-
[PG_PERCONAVERSION=2]
40+
[PG_PERCONAVERSION=3]
4141
AC_DEFINE_UNQUOTED(PG_PERCONAVERSION, "$PG_PERCONAVERSION", [PostgreSQL Percona version as a string])
4242

4343
PGAC_ARG_REQ(with, extra-version, [STRING], [append STRING to version],

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ endif
134134
pg_version_major = pg_version_arr[0].to_int()
135135
pg_version_minor = pg_version_arr[1].to_int()
136136
pg_version_num = (pg_version_major * 10000) + pg_version_minor
137-
pg_percona_ver = '2'
137+
pg_percona_ver = '3'
138138

139139
pg_url = 'https://www.postgresql.org/'
140140

src/test/modules/test_misc/t/008_percona_server_version.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# To make this testcase work, PERCONA_SERVER_VERSION variable should be available in environment.
1818
# If you are using ci_scripts it is already declated in ci_scripts/env.sh
1919
# If you are using command line make for regression then export like:
20-
# export PERCONA_SERVER_VERSION=17.5.2
20+
# export PERCONA_SERVER_VERSION=17.5.3
2121

2222
if (!defined($ENV{PERCONA_SERVER_VERSION}))
2323
{

0 commit comments

Comments
 (0)