Skip to content

Commit 66ac647

Browse files
author
Antonin Houska
committed
Bumped version number.
1 parent 1a86753 commit 66ac647

File tree

5 files changed

+34
-2
lines changed

5 files changed

+34
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PGFILEDESC = "pg_squeeze - a tool to remove unused space from a relation."
66
EXTENSION = pg_squeeze
77
DATA = pg_squeeze--1.2.sql pg_squeeze--1.2--1.3.sql pg_squeeze--1.3--1.4.sql \
88
pg_squeeze--1.4--1.5.sql pg_squeeze--1.5--1.6.sql pg_squeeze--1.6--1.7.sql \
9-
pg_squeeze--1.7--1.8.sql
9+
pg_squeeze--1.7--1.8.sql pg_squeeze--1.8--1.9.sql
1010
DOCS = pg_squeeze.md
1111

1212
REGRESS = squeeze

NEWS

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Release 1.9.1
2+
=============
3+
4+
Bug fixes
5+
---------
6+
7+
* Fix version information.
8+
9+
Version 1.9.0 was accidentally tagged without updating the version information
10+
in the source code.
11+
12+
13+
Release 1.9.0
14+
=============
15+
16+
New features
17+
------------
18+
19+
1. Make the code compatible with PostgreSQL server version 18.
20+
21+
Bug fixes
22+
---------
23+
24+
* Do not raise ERROR if table column is of composite type
25+
(https://github.com/cybertec-postgresql/pg_squeeze/issues/83)
26+
27+
128
Release 1.8.0
229
=============
330

pg_squeeze--1.8--1.9.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- No SQL changes for this upgrade.

pg_squeeze.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,11 @@ extern PGDLLIMPORT bool FirstSnapshotSet;
6262
#error "PostgreSQL version 12 or higher is required"
6363
#endif
6464

65+
#ifdef PG_MODULE_MAGIC_EXT
66+
PG_MODULE_MAGIC_EXT(.name = "pg_squeeze", .version = "1.9.1");
67+
#else
6568
PG_MODULE_MAGIC;
69+
#endif
6670

6771
static void squeeze_table_internal(Name relschema, Name relname, Name indname,
6872
Name tbspname, ArrayType *ind_tbsp);

pg_squeeze.control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# pg_squeeze extension
22
comment = 'A tool to remove unused space from a relation.'
3-
default_version = '1.8'
3+
default_version = '1.9'
44
module_pathname = '$libdir/pg_squeeze'
55
relocatable = false
66
schema = 'squeeze'

0 commit comments

Comments
 (0)