Skip to content

Commit 7104db6

Browse files
authored
Merge pull request #255 from pblottiere/v121
Get prepared for v1.2.1
2 parents 49fc69e + 6724767 commit 7104db6

File tree

5 files changed

+16
-4
lines changed

5 files changed

+16
-4
lines changed

NEWS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
1.2.1, 2020-01-01
2+
-----------------
3+
4+
- Bug fixes
5+
- Fix compilation with PostgreSQL 11 #237
6+
- Fix compilation with PostgreSQL 12 #243
7+
8+
- Enhancements
9+
- Improve documentation for PC_MemSize #232
10+
- Fix unit tests with PostgreSQL >= 10 #253
11+
- Fix typo in README #238
12+
113
1.2.0, 2018-08-22
214
-----------------
315

Version.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.0
1+
1.2.1

pgsql/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ EXTENSION = pointcloud
1515
EXTVERSION=$(shell cat ../Version.config)
1616
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config)
1717
MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR)
18-
UPGRADABLE = 1.1.0 1.1.1
18+
UPGRADABLE = 1.1.0 1.1.1 1.2.0
1919

2020
UPGRADES = \
2121
$(shell echo $(UPGRADABLE) | \

pgsql/expected/pointcloud.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
44
SELECT PC_Version();
55
pc_version
66
------------
7-
1.2.0
7+
1.2.1
88
(1 row)
99

1010
INSERT INTO pointcloud_formats (pcid, srid, schema)

pgsql/expected/pointcloud_pg9.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ CREATE EXTENSION pointcloud;
33
SELECT PC_Version();
44
pc_version
55
------------
6-
1.2.0
6+
1.2.1
77
(1 row)
88

99
INSERT INTO pointcloud_formats (pcid, srid, schema)

0 commit comments

Comments
 (0)