Skip to content

Commit 8e7c92f

Browse files
author
Vitaly Davydov
committed
Incremented pgsphere version (patch number)
1 parent cce07bb commit 8e7c92f

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

Diff for: Makefile

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PGSPHERE_VERSION = 1.3.0
1+
PGSPHERE_VERSION = 1.3.1
22
EXTENSION = pg_sphere
33
RELEASE_SQL = $(EXTENSION)--$(PGSPHERE_VERSION).sql
44
USE_PGXS = 1
@@ -28,7 +28,8 @@ DATA_built = $(RELEASE_SQL) \
2828
pg_sphere--1.2.0--1.2.1.sql \
2929
pg_sphere--1.2.1--1.2.2.sql \
3030
pg_sphere--1.2.2--1.2.3.sql \
31-
pg_sphere--1.2.3--1.3.0.sql
31+
pg_sphere--1.2.3--1.3.0.sql \
32+
pg_sphere--1.3.0--1.3.1.sql
3233

3334
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
3435
REGRESS = init tables points euler circle line ellipse poly path box index \
@@ -265,6 +266,9 @@ pg_sphere--1.2.2--1.2.3.sql:
265266
pg_sphere--1.2.3--1.3.0.sql: pgs_brin.sql.in
266267
cat upgrade_scripts/$@.in $^ > $@
267268

269+
pg_sphere--1.3.0--1.3.1.sql:
270+
cat upgrade_scripts/$@.in > $@
271+
268272
# end of local stuff
269273

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

Diff for: 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.0
9+
1.3.1
1010
(1 row)
1111

File renamed without changes.

Diff for: 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.0'
3+
default_version = '1.3.1'
44
module_pathname = '$libdir/pg_sphere'
55
relocatable = true

Diff for: upgrade_scripts/pg_sphere--1.3.0--1.3.1.sql.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
-- Nothing to upgrade in the schema

0 commit comments

Comments
 (0)