Skip to content

Commit

Permalink
Merge pull request #347 from pgpointcloud/prepare_release_125
Browse files Browse the repository at this point in the history
Prepare v1.2.5
  • Loading branch information
pblottiere committed Sep 19, 2023
2 parents 5300472 + 4b15688 commit b5db45a
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 9 deletions.
6 changes: 6 additions & 0 deletions 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
-----------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Version.config
@@ -1 +1 @@
1.2.4
1.2.5
6 changes: 4 additions & 2 deletions doc/download.rst
Expand Up @@ -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`_
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pgsql/Makefile.in
Expand Up @@ -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) | \
Expand Down
2 changes: 1 addition & 1 deletion pgsql/expected/pointcloud.out
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion pgsql_postgis/Makefile
Expand Up @@ -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)--/' | \
Expand Down

0 comments on commit b5db45a

Please sign in to comment.