From 67247673a836360d51514892623e85d8e646f703 Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Tue, 7 Jan 2020 23:41:24 +0100 Subject: [PATCH] Get prepared for v1.2.1 --- NEWS | 12 ++++++++++++ Version.config | 2 +- pgsql/Makefile.in | 2 +- pgsql/expected/pointcloud.out | 2 +- pgsql/expected/pointcloud_pg9.out | 2 +- 5 files changed, 16 insertions(+), 4 deletions(-) diff --git a/NEWS b/NEWS index 09693bed..6d71a769 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,15 @@ +1.2.1, 2020-01-01 +----------------- + +- Bug fixes + - Fix compilation with PostgreSQL 11 #237 + - Fix compilation with PostgreSQL 12 #243 + +- Enhancements + - Improve documentation for PC_MemSize #232 + - Fix unit tests with PostgreSQL >= 10 #253 + - Fix typo in README #238 + 1.2.0, 2018-08-22 ----------------- diff --git a/Version.config b/Version.config index 26aaba0e..6085e946 100644 --- a/Version.config +++ b/Version.config @@ -1 +1 @@ -1.2.0 +1.2.1 diff --git a/pgsql/Makefile.in b/pgsql/Makefile.in index e51003c6..28d61ff3 100644 --- a/pgsql/Makefile.in +++ b/pgsql/Makefile.in @@ -15,7 +15,7 @@ EXTENSION = pointcloud EXTVERSION=$(shell cat ../Version.config) EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config) MODULE_big = $(EXTENSION)-$(EXTVERSION_MAJOR) -UPGRADABLE = 1.1.0 1.1.1 +UPGRADABLE = 1.1.0 1.1.1 1.2.0 UPGRADES = \ $(shell echo $(UPGRADABLE) | \ diff --git a/pgsql/expected/pointcloud.out b/pgsql/expected/pointcloud.out index 925a02c4..2323483b 100644 --- a/pgsql/expected/pointcloud.out +++ b/pgsql/expected/pointcloud.out @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud; SELECT PC_Version(); pc_version ------------ - 1.2.0 + 1.2.1 (1 row) INSERT INTO pointcloud_formats (pcid, srid, schema) diff --git a/pgsql/expected/pointcloud_pg9.out b/pgsql/expected/pointcloud_pg9.out index 6338fb0a..98042c44 100644 --- a/pgsql/expected/pointcloud_pg9.out +++ b/pgsql/expected/pointcloud_pg9.out @@ -3,7 +3,7 @@ CREATE EXTENSION pointcloud; SELECT PC_Version(); pc_version ------------ - 1.2.0 + 1.2.1 (1 row) INSERT INTO pointcloud_formats (pcid, srid, schema)