File tree Expand file tree Collapse file tree 7 files changed +23
-8
lines changed
Expand file tree Collapse file tree 7 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 1+ 1.2.3, 2022-09-12
2+ -----------------
3+
4+ - Bug fixes
5+ - Fix segmentation fault in pcpatch_transform (#322)
6+ - Fixes uninitialised schema cache during first call (#317)
7+ - Don't call SPI_finish() when erroring out (#312)
8+ - No crash when an invalid dimensional patch is compressed (#320)
9+
10+ - Enhancements
11+ - Add documentation for debugging with Valgrind (#316)
12+ - Add documentation for debugging with GDB (#321)
13+
1141.2.2, 2022-05-10
215-----------------
316
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.2 -green.svg?style=plastic
5+ [ release-image ] : https://img.shields.io/badge/release-1.2.3 -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.2
1+ 1.2.3
Original file line number Diff line number Diff line change @@ -13,21 +13,23 @@ Download
1313Current Release(s)
1414------------------------------------------------------------------------------
1515
16- * **10-05 -2022 ** `pointcloud-1.2.2 .tar.gz `_ (`Release Notes `_)
16+ * **12-09 -2022 ** `pointcloud-1.2.3 .tar.gz `_ (`Release Notes `_)
1717
18- .. _`Release Notes` : https://github.com/pgpointcloud/pointcloud/blob/v1.2.2 /NEWS
18+ .. _`Release Notes` : https://github.com/pgpointcloud/pointcloud/blob/v1.2.3 /NEWS
1919
2020
2121Past Releases
2222------------------------------------------------------------------------------
2323
24+ * **10-05-2022 ** `pointcloud-1.2.2.tar.gz `_
2425* **01-07-2020 ** `pointcloud-1.2.1.tar.gz `_
2526* **22-08-2018 ** `pointcloud-1.2.0.tar.gz `_
2627* **18-06-2018 ** `pointcloud-1.1.1.tar.gz `_
2728* **30-04-2018 ** `pointcloud-1.1.0.tar.gz `_
2829* **30-04-2018 ** `pointcloud-1.0.1.tar.gz `_
2930* **23-10-2013 ** `pointcloud-0.1.0.tar.gz `_
3031
32+ .. _`pointcloud-1.2.3.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.3.tar.gz
3133.. _`pointcloud-1.2.2.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.2.tar.gz
3234.. _`pointcloud-1.2.1.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.1.tar.gz
3335.. _`pointcloud-1.2.0.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.0.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- **10-05 -2022 **
19+ **12-09 -2022 **
2020................................................................................
2121
22- pgPointcloud 1.2.2 has been released.
22+ pgPointcloud 1.2.3 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
18+ UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2
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.2
7+ 1.2.3
88(1 row)
99
1010INSERT INTO pointcloud_formats (pcid, srid, schema)
You can’t perform that action at this time.
0 commit comments