Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v1.2.5 #347

Merged
merged 1 commit into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.4
1.2.5
6 changes: 4 additions & 2 deletions doc/download.rst
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading