From 4b1568836ba60b17b1053b8b435cee52c76fd7ff Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Tue, 19 Sep 2023 19:12:10 +0200 Subject: [PATCH] Prepare v1.2.5 --- NEWS | 6 ++++++ README.md | 2 +- Version.config | 2 +- doc/download.rst | 6 ++++-- doc/index.rst | 4 ++-- pgsql/Makefile.in | 2 +- pgsql/expected/pointcloud.out | 2 +- pgsql_postgis/Makefile | 2 +- 8 files changed, 17 insertions(+), 9 deletions(-) diff --git a/NEWS b/NEWS index 6d190312..578130ac 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,9 @@ +1.2.5, 2023-09-19 +----------------- + +- Bug fixes + - Fix compilation with PostgreSQL 16 (#340) + 1.2.4, 2022-09-26 ----------------- diff --git a/README.md b/README.md index 28cb4cc6..bb366fe8 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.4-green.svg?style=plastic +[release-image]: https://img.shields.io/badge/release-1.2.5-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 e8ea05db..c813fe11 100644 --- a/Version.config +++ b/Version.config @@ -1 +1 @@ -1.2.4 +1.2.5 diff --git a/doc/download.rst b/doc/download.rst index 3e46690f..27eed684 100644 --- a/doc/download.rst +++ b/doc/download.rst @@ -13,14 +13,15 @@ Download Current Release(s) ------------------------------------------------------------------------------ -* **26-09-2022** `pointcloud-1.2.4.tar.gz`_ (`Release Notes`_) +* **19-09-2023** `pointcloud-1.2.5.tar.gz`_ (`Release Notes`_) -.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.4/NEWS +.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.5/NEWS Past Releases ------------------------------------------------------------------------------ +* **26-09-2022** `pointcloud-1.2.4.tar.gz`_ * **12-09-2022** `pointcloud-1.2.3.tar.gz`_ * **10-05-2022** `pointcloud-1.2.2.tar.gz`_ * **01-07-2020** `pointcloud-1.2.1.tar.gz`_ @@ -30,6 +31,7 @@ Past Releases * **30-04-2018** `pointcloud-1.0.1.tar.gz`_ * **23-10-2013** `pointcloud-0.1.0.tar.gz`_ +.. _`pointcloud-1.2.5.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.5.tar.gz .. _`pointcloud-1.2.4.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.4.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 diff --git a/doc/index.rst b/doc/index.rst index d4584277..a236f4b9 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 -------------------------------------------------------------------------------- -**26-09-2022** +**19-09-2023** ................................................................................ -pgPointcloud 1.2.4 has been released. +pgPointcloud 1.2.5 has been released. Concepts diff --git a/pgsql/Makefile.in b/pgsql/Makefile.in index a68d16b5..26afbcce 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 1.2.2 1.2.3 +UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 UPGRADES = \ $(shell echo $(UPGRADABLE) | \ diff --git a/pgsql/expected/pointcloud.out b/pgsql/expected/pointcloud.out index 7793a65d..e7e7f906 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.4 + 1.2.5 (1 row) INSERT INTO pointcloud_formats (pcid, srid, schema) diff --git a/pgsql_postgis/Makefile b/pgsql_postgis/Makefile index 9e68f390..f354aa02 100644 --- a/pgsql_postgis/Makefile +++ b/pgsql_postgis/Makefile @@ -8,7 +8,7 @@ SED = sed EXTENSION = pointcloud_postgis EXTVERSION=$(shell cat ../Version.config) -UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 +UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 UPGRADES = \ $(shell echo $(UPGRADABLE) | \ $(SED) 's/^/$(EXTENSION)--/' | \