WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
File tree Expand file tree Collapse file tree 8 files changed +17
-9
lines changed
Expand file tree Collapse file tree 8 files changed +17
-9
lines changed Original file line number Diff line number Diff line change 1+ 1.2.5, 2023-09-19
2+ -----------------
3+
4+ - Bug fixes
5+ - Fix compilation with PostgreSQL 16 (#340)
6+
171.2.4, 2022-09-26
28-----------------
39
Original file line number Diff line number Diff line change 22
33[ ![ Release] [ release-image ]] [ releases ]
44
5- [ release-image ] : https://img.shields.io/badge/release-1.2.4 -green.svg?style=plastic
5+ [ release-image ] : https://img.shields.io/badge/release-1.2.5 -green.svg?style=plastic
66[ releases ] : https://github.com/pgpointcloud/pointcloud/releases
77
88A PostgreSQL extension for storing point cloud (LIDAR) data. See
Original file line number Diff line number Diff line change 1- 1.2.4
1+ 1.2.5
Original file line number Diff line number Diff line change @@ -13,14 +13,15 @@ Download
1313Current Release(s)
1414------------------------------------------------------------------------------
1515
16- * **26 -09-2022 ** `pointcloud-1.2.4 .tar.gz `_ (`Release Notes `_)
16+ * **19 -09-2023 ** `pointcloud-1.2.5 .tar.gz `_ (`Release Notes `_)
1717
18- .. _`Release Notes` : https://github.com/pgpointcloud/pointcloud/blob/v1.2.4 /NEWS
18+ .. _`Release Notes` : https://github.com/pgpointcloud/pointcloud/blob/v1.2.5 /NEWS
1919
2020
2121Past Releases
2222------------------------------------------------------------------------------
2323
24+ * **26-09-2022 ** `pointcloud-1.2.4.tar.gz `_
2425* **12-09-2022 ** `pointcloud-1.2.3.tar.gz `_
2526* **10-05-2022 ** `pointcloud-1.2.2.tar.gz `_
2627* **01-07-2020 ** `pointcloud-1.2.1.tar.gz `_
@@ -30,6 +31,7 @@ Past Releases
3031* **30-04-2018 ** `pointcloud-1.0.1.tar.gz `_
3132* **23-10-2013 ** `pointcloud-0.1.0.tar.gz `_
3233
34+ .. _`pointcloud-1.2.5.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.5.tar.gz
3335.. _`pointcloud-1.2.4.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.4.tar.gz
3436.. _`pointcloud-1.2.3.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.3.tar.gz
3537.. _`pointcloud-1.2.2.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.2.tar.gz
Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ problems and allows a good integration with other geo-spatial data
1616News
1717--------------------------------------------------------------------------------
1818
19- **26 -09-2022 **
19+ **19 -09-2023 **
2020................................................................................
2121
22- pgPointcloud 1.2.4 has been released.
22+ pgPointcloud 1.2.5 has been released.
2323
2424
2525Concepts
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ EXTENSION = pointcloud
1515EXTVERSION =$(shell cat ../Version.config)
1616EXTVERSION_MAJOR =$(shell cut -d. -f1,2 ../Version.config)
1717MODULE_big = $(EXTENSION ) -$(EXTVERSION_MAJOR )
18- UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3
18+ UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4
1919
2020UPGRADES = \
2121 $(shell echo $(UPGRADABLE ) | \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
44SELECT PC_Version();
55 pc_version
66------------
7- 1.2.4
7+ 1.2.5
88(1 row)
99
1010INSERT INTO pointcloud_formats (pcid, srid, schema)
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ SED = sed
88EXTENSION = pointcloud_postgis
99EXTVERSION =$(shell cat ../Version.config)
1010
11- UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3
11+ UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4
1212UPGRADES = \
1313 $(shell echo $(UPGRADABLE ) | \
1414 $(SED ) 's/^/$(EXTENSION ) --/' | \
You can’t perform that action at this time.
0 commit comments