From 1bbd12416dc758aa1dd887a8fe1b612e14e7cccb Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Mon, 12 Sep 2022 09:09:11 +0200 Subject: [PATCH] Prepare v1.2.3 --- NEWS | 13 +++++++++++++ README.md | 2 +- Version.config | 2 +- doc/download.rst | 6 ++++-- doc/index.rst | 4 ++-- pgsql/Makefile.in | 2 +- pgsql/expected/pointcloud.out | 2 +- 7 files changed, 23 insertions(+), 8 deletions(-) diff --git a/NEWS b/NEWS index bac3b1a9..f3aa383f 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,16 @@ +1.2.3, 2022-09-12 +----------------- + +- Bug fixes + - Fix segmentation fault in pcpatch_transform (#322) + - Fixes uninitialised schema cache during first call (#317) + - Don't call SPI_finish() when erroring out (#312) + - No crash when an invalid dimensional patch is compressed (#320) + +- Enhancements + - Add documentation for debugging with Valgrind (#316) + - Add documentation for debugging with GDB (#321) + 1.2.2, 2022-05-10 ----------------- diff --git a/README.md b/README.md index 26426083..1417174d 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Release][release-image]][releases] -[release-image]: https://img.shields.io/badge/release-1.2.2-green.svg?style=plastic +[release-image]: https://img.shields.io/badge/release-1.2.3-green.svg?style=plastic [releases]: https://github.com/pgpointcloud/pointcloud/releases A PostgreSQL extension for storing point cloud (LIDAR) data. See diff --git a/Version.config b/Version.config index 23aa8390..0495c4a8 100644 --- a/Version.config +++ b/Version.config @@ -1 +1 @@ -1.2.2 +1.2.3 diff --git a/doc/download.rst b/doc/download.rst index f61a9e95..8bd2dd7e 100644 --- a/doc/download.rst +++ b/doc/download.rst @@ -13,14 +13,15 @@ Download Current Release(s) ------------------------------------------------------------------------------ -* **10-05-2022** `pointcloud-1.2.2.tar.gz`_ (`Release Notes`_) +* **12-09-2022** `pointcloud-1.2.3.tar.gz`_ (`Release Notes`_) -.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.2/NEWS +.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.3/NEWS Past Releases ------------------------------------------------------------------------------ +* **10-05-2022** `pointcloud-1.2.2.tar.gz`_ * **01-07-2020** `pointcloud-1.2.1.tar.gz`_ * **22-08-2018** `pointcloud-1.2.0.tar.gz`_ * **18-06-2018** `pointcloud-1.1.1.tar.gz`_ @@ -28,6 +29,7 @@ Past Releases * **30-04-2018** `pointcloud-1.0.1.tar.gz`_ * **23-10-2013** `pointcloud-0.1.0.tar.gz`_ +.. _`pointcloud-1.2.3.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.3.tar.gz .. _`pointcloud-1.2.2.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.2.tar.gz .. _`pointcloud-1.2.1.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.1.tar.gz .. _`pointcloud-1.2.0.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.0.tar.gz diff --git a/doc/index.rst b/doc/index.rst index 672f98d1..127871ce 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -16,10 +16,10 @@ problems and allows a good integration with other geo-spatial data News -------------------------------------------------------------------------------- -**10-05-2022** +**12-09-2022** ................................................................................ -pgPointcloud 1.2.2 has been released. +pgPointcloud 1.2.3 has been released. Concepts diff --git a/pgsql/Makefile.in b/pgsql/Makefile.in index f3110d63..efdd6666 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 1.2.0 1.2.1 +UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 UPGRADES = \ $(shell echo $(UPGRADABLE) | \ diff --git a/pgsql/expected/pointcloud.out b/pgsql/expected/pointcloud.out index eddc7a37..0df196dd 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.2 + 1.2.3 (1 row) INSERT INTO pointcloud_formats (pcid, srid, schema)