Skip to content

Commit

Permalink
Bumped version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
Antonin Houska committed Jan 24, 2025
1 parent 0f592a0 commit b882299
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ PGFILEDESC = "pg_squeeze - a tool to remove unused space from a relation."

EXTENSION = pg_squeeze
DATA = pg_squeeze--1.2.sql pg_squeeze--1.2--1.3.sql pg_squeeze--1.3--1.4.sql \
pg_squeeze--1.4--1.5.sql pg_squeeze--1.5--1.6.sql pg_squeeze--1.6--1.7.sql
pg_squeeze--1.4--1.5.sql pg_squeeze--1.5--1.6.sql pg_squeeze--1.6--1.7.sql \
pg_squeeze--1.7--1.8.sql
DOCS = pg_squeeze.md

REGRESS = squeeze
Expand Down
12 changes: 12 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release 1.8.0
=============

This release fixes a bug in the squeeze.squeeze_table() function, which can
cause data corruption. The problem can occur if other clients run DDL
statements or squeeze other tables around the time the function starts its
execution.

Automatic launching by the scheduler worker (as described in the "Register
table for regular processing" section of README) is not affected.


Release 1.7.0
=============

Expand Down
1 change: 1 addition & 0 deletions pg_squeeze--1.7--1.8.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-- No SQL changes for this upgrade.
2 changes: 1 addition & 1 deletion pg_squeeze.control
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# pg_squeeze extension
comment = 'A tool to remove unused space from a relation.'
default_version = '1.7'
default_version = '1.8'
module_pathname = '$libdir/pg_squeeze'
relocatable = false
schema = 'squeeze'

0 comments on commit b882299

Please sign in to comment.