mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2026-02-01 17:20:32 +00:00
Merge pull request #347 from pgpointcloud/prepare_release_125
Prepare v1.2.5
This commit is contained in:
commit
b5db45acfb
6
NEWS
6
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
|
||||
-----------------
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -1 +1 @@
|
||||
1.2.4
|
||||
1.2.5
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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) | \
|
||||
|
||||
@ -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)
|
||||
|
||||
@ -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)--/' | \
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user