Skip to content

Commit 2cb0c28

Browse files
committed
Increment the version number to 1.4.1
1 parent 902ba8d commit 2cb0c28

File tree

5 files changed

+9
-4
lines changed

5 files changed

+9
-4
lines changed

Diff for: Makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ DATA_built = $(RELEASE_SQL) \
3232
pg_sphere--1.2.2--1.2.3.sql \
3333
pg_sphere--1.2.3--1.3.0.sql \
3434
pg_sphere--1.3.0--1.3.1.sql \
35-
pg_sphere--1.3.1--1.4.0.sql
35+
pg_sphere--1.3.1--1.4.0.sql \
36+
pg_sphere--1.4.0--1.4.1.sql \
3637

3738
DOCS = README.pg_sphere COPYRIGHT.pg_sphere
3839
TESTS = version tables points euler circle line ellipse poly path box \
@@ -204,6 +205,9 @@ endif
204205
pg_sphere--1.3.1--1.4.0.sql: pgs_circle_sel.sql.in pgs_hash.sql.in
205206
cat upgrade_scripts/$@.in $^ > $@
206207

208+
pg_sphere--1.4.0--1.4.1.sql:
209+
cat upgrade_scripts/$@.in $^ > $@
210+
207211
# end of local stuff
208212

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

Diff for: 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.4.0
8+
PGSPHERE_VERSION := 1.4.1

Diff for: expected/version.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
SELECT pg_sphere_version();
33
pg_sphere_version
44
-------------------
5-
1.4.0
5+
1.4.1
66
(1 row)
77

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.4.0'
3+
default_version = '1.4.1'
44
module_pathname = '$libdir/pg_sphere'
55
relocatable = true

Diff for: upgrade_scripts/pg_sphere--1.4.0--1.4.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)