Skip to content

Commit 2a2f70e

Browse files
committed
Bump version to 1.3.2
1 parent 1066514 commit 2a2f70e

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ DATA_built = $(RELEASE_SQL) \
3030
pg_sphere--1.2.1--1.2.2.sql \
3131
pg_sphere--1.2.2--1.2.3.sql \
3232
pg_sphere--1.2.3--1.3.0.sql \
33-
pg_sphere--1.3.0--1.3.1.sql
33+
pg_sphere--1.3.0--1.3.1.sql \
34+
pg_sphere--1.3.1--1.3.2.sql
3435

3536
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
3637
REGRESS = init tables points euler circle line ellipse poly path box index \
@@ -258,6 +259,9 @@ pg_sphere--1.2.3--1.3.0.sql: pgs_brin.sql.in
258259
pg_sphere--1.3.0--1.3.1.sql:
259260
cat upgrade_scripts/$@.in > $@
260261

262+
pg_sphere--1.3.1--1.3.2.sql:
263+
cat upgrade_scripts/$@.in > $@
264+
261265
# end of local stuff
262266

263267
src/sscan.o : src/sparse.c

Makefile.common.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
#----------------------------------------------------------------------------
66

77
EXTENSION := pg_sphere
8-
PGSPHERE_VERSION := 1.3.1
8+
PGSPHERE_VERSION := 1.3.2

expected/init.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ CREATE EXTENSION pg_sphere;
66
select pg_sphere_version();
77
pg_sphere_version
88
-------------------
9-
1.3.1
9+
1.3.2
1010
(1 row)
1111

File renamed without changes.

pg_sphere.control

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# pg_sphere extension
22
comment = 'spherical objects with useful functions, operators and index support'
3-
default_version = '1.3.1'
3+
default_version = '1.3.2'
44
module_pathname = '$libdir/pg_sphere'
55
relocatable = true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Nothing to upgrade in the schema

0 commit comments

Comments
 (0)