Skip to content

Commit 11e184e

Browse files
committed
bump dev version to 1.5
1 parent db001cb commit 11e184e

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ override PG_CPPFLAGS += -I$(CURDIR)/src/include
1414

1515
EXTENSION = pg_pathman
1616

17-
EXTVERSION = 1.4
17+
EXTVERSION = 1.5
1818

1919
DATA_built = pg_pathman--$(EXTVERSION).sql
2020

expected/pathman_calamity.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ SELECT debug_capture();
1212
SELECT get_pathman_lib_version();
1313
get_pathman_lib_version
1414
-------------------------
15-
10401
15+
10500
1616
(1 row)
1717

1818
set client_min_messages = NOTICE;

pg_pathman.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# pg_pathman extension
22
comment = 'Partitioning tool for PostgreSQL'
3-
default_version = '1.4'
3+
default_version = '1.5'
44
module_pathname = '$libdir/pg_pathman'

src/include/init.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,10 +154,10 @@ simpify_mcxt_name(MemoryContext mcxt)
154154

155155

156156
/* Lowest version of Pl/PgSQL frontend compatible with internals (0xAA_BB_CC) */
157-
#define LOWEST_COMPATIBLE_FRONT 0x010400
157+
#define LOWEST_COMPATIBLE_FRONT 0x010500
158158

159159
/* Current version of native C library (0xAA_BB_CC) */
160-
#define CURRENT_LIB_VERSION 0x010401
160+
#define CURRENT_LIB_VERSION 0x010500
161161

162162

163163
void *pathman_cache_search_relid(HTAB *cache_table,

0 commit comments

Comments
 (0)