Skip to content

Commit b882299

Browse files
author
Antonin Houska
committedJan 24, 2025
Bumped version number.
1 parent 0f592a0 commit b882299

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed
 

‎Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ PGFILEDESC = "pg_squeeze - a tool to remove unused space from a relation."
55

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 \
8-
pg_squeeze--1.4--1.5.sql pg_squeeze--1.5--1.6.sql pg_squeeze--1.6--1.7.sql
8+
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
910
DOCS = pg_squeeze.md
1011

1112
REGRESS = squeeze

‎NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Release 1.8.0
2+
=============
3+
4+
This release fixes a bug in the squeeze.squeeze_table() function, which can
5+
cause data corruption. The problem can occur if other clients run DDL
6+
statements or squeeze other tables around the time the function starts its
7+
execution.
8+
9+
Automatic launching by the scheduler worker (as described in the "Register
10+
table for regular processing" section of README) is not affected.
11+
12+
113
Release 1.7.0
214
=============
315

‎pg_squeeze--1.7--1.8.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.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.7'
3+
default_version = '1.8'
44
module_pathname = '$libdir/pg_squeeze'
55
relocatable = false
66
schema = 'squeeze'

0 commit comments

Comments
 (0)