Skip to content

Commit dfe71fc

Browse files
authored
Bump version from 14.0devel to 14.0.0 in configuration and related files (#8473)
Bump version from 14.0devel to 14.0.0 in configuration and related files
1 parent 803f0ac commit dfe71fc

File tree

7 files changed

+16
-16
lines changed

7 files changed

+16
-16
lines changed

configure

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22
# Guess values for system-dependent variables and create Makefiles.
3-
# Generated by GNU Autoconf 2.69 for Citus 14.0devel.
3+
# Generated by GNU Autoconf 2.69 for Citus 14.0.0.
44
#
55
#
66
# Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -579,8 +579,8 @@ MAKEFLAGS=
579579
# Identity of this package.
580580
PACKAGE_NAME='Citus'
581581
PACKAGE_TARNAME='citus'
582-
PACKAGE_VERSION='14.0devel'
583-
PACKAGE_STRING='Citus 14.0devel'
582+
PACKAGE_VERSION='14.0.0'
583+
PACKAGE_STRING='Citus 14.0.0'
584584
PACKAGE_BUGREPORT=''
585585
PACKAGE_URL=''
586586

@@ -1262,7 +1262,7 @@ if test "$ac_init_help" = "long"; then
12621262
# Omit some internal or obsolete options to make the list less imposing.
12631263
# This message is too long to be a string in the A/UX 3.1 sh.
12641264
cat <<_ACEOF
1265-
\`configure' configures Citus 14.0devel to adapt to many kinds of systems.
1265+
\`configure' configures Citus 14.0.0 to adapt to many kinds of systems.
12661266
12671267
Usage: $0 [OPTION]... [VAR=VALUE]...
12681268
@@ -1324,7 +1324,7 @@ fi
13241324

13251325
if test -n "$ac_init_help"; then
13261326
case $ac_init_help in
1327-
short | recursive ) echo "Configuration of Citus 14.0devel:";;
1327+
short | recursive ) echo "Configuration of Citus 14.0.0:";;
13281328
esac
13291329
cat <<\_ACEOF
13301330
@@ -1429,7 +1429,7 @@ fi
14291429
test -n "$ac_init_help" && exit $ac_status
14301430
if $ac_init_version; then
14311431
cat <<\_ACEOF
1432-
Citus configure 14.0devel
1432+
Citus configure 14.0.0
14331433
generated by GNU Autoconf 2.69
14341434
14351435
Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1912,7 +1912,7 @@ cat >config.log <<_ACEOF
19121912
This file contains any messages produced by compilers while
19131913
running configure, to aid debugging if configure makes a mistake.
19141914
1915-
It was created by Citus $as_me 14.0devel, which was
1915+
It was created by Citus $as_me 14.0.0, which was
19161916
generated by GNU Autoconf 2.69. Invocation command line was
19171917
19181918
$ $0 $@
@@ -5395,7 +5395,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
53955395
# report actual input values of CONFIG_FILES etc. instead of their
53965396
# values after options handling.
53975397
ac_log="
5398-
This file was extended by Citus $as_me 14.0devel, which was
5398+
This file was extended by Citus $as_me 14.0.0, which was
53995399
generated by GNU Autoconf 2.69. Invocation command line was
54005400
54015401
CONFIG_FILES = $CONFIG_FILES
@@ -5457,7 +5457,7 @@ _ACEOF
54575457
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
54585458
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
54595459
ac_cs_version="\\
5460-
Citus config.status 14.0devel
5460+
Citus config.status 14.0.0
54615461
configured by $0, generated by GNU Autoconf 2.69,
54625462
with options \\"\$ac_cs_config\\"
54635463

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# everyone needing autoconf installed, the resulting files are checked
66
# into the SCM.
77

8-
AC_INIT([Citus], [14.0devel])
8+
AC_INIT([Citus], [14.0.0])
99
AC_COPYRIGHT([Copyright (c) Citus Data, Inc.])
1010

1111
# we'll need sed and awk for some of the version commands

src/backend/columnar/mod.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
#if PG_VERSION_NUM >= PG_VERSION_18
25-
PG_MODULE_MAGIC_EXT(.name = "citus_columnar", .version = "14.0devel");
25+
PG_MODULE_MAGIC_EXT(.name = "citus_columnar", .version = "14.0.0");
2626
#else
2727
PG_MODULE_MAGIC;
2828
#endif

src/backend/distributed/shared_library_init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120

121121
/* marks shared object as one loadable by the postgres version compiled against */
122122
#if PG_VERSION_NUM >= PG_VERSION_18
123-
PG_MODULE_MAGIC_EXT(.name = "citus", .version = "14.0devel");
123+
PG_MODULE_MAGIC_EXT(.name = "citus", .version = "14.0.0");
124124
#else
125125
PG_MODULE_MAGIC;
126126
#endif

src/test/regress/citus_tests/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def get_pg_major_version():
9797
15: "11.1.5",
9898
16: "12.1.5",
9999
17: "13.0.1",
100-
18: "14.0devel",
100+
18: "14.0.0",
101101
}
102102

103103
OLDEST_SUPPORTED_CITUS_VERSION = OLDEST_SUPPORTED_CITUS_VERSION_MATRIX[PG_MAJOR_VERSION]

src/test/regress/expected/multi_extension.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1680,7 +1680,7 @@ DROP TABLE multi_extension.prev_objects, multi_extension.extension_diff;
16801680
SHOW citus.version;
16811681
citus.version
16821682
---------------------------------------------------------------------
1683-
14.0devel
1683+
14.0.0
16841684
(1 row)
16851685

16861686
-- ensure no unexpected objects were created outside pg_catalog

src/test/regress/expected/pg18.out

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3016,8 +3016,8 @@ SET citus.explain_all_tasks TO default;
30163016
SELECT * FROM pg_get_loaded_modules() WHERE file_name LIKE 'citus%' ORDER BY module_name;
30173017
module_name | version | file_name
30183018
---------------------------------------------------------------------
3019-
citus | 14.0devel | citus.so
3020-
citus_columnar | 14.0devel | citus_columnar.so
3019+
citus | 14.0.0 | citus.so
3020+
citus_columnar | 14.0.0 | citus_columnar.so
30213021
(2 rows)
30223022

30233023
-- ============================================================

0 commit comments

Comments
 (0)