Skip to content

Commit f08b80f

Browse files
authored
Merge pull request #323 from pblottiere/1_2_3
Prepare v1.2.3
2 parents 629241d + 1bbd124 commit f08b80f

File tree

7 files changed

+23
-8
lines changed

7 files changed

+23
-8
lines changed

NEWS

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
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+
114
1.2.2, 2022-05-10
215
-----------------
316

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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

88
A PostgreSQL extension for storing point cloud (LIDAR) data. See

Version.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.2
1+
1.2.3

doc/download.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,23 @@ Download
1313
Current 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

2121
Past 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

doc/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ problems and allows a good integration with other geo-spatial data
1616
News
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

2525
Concepts

pgsql/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ EXTENSION = pointcloud
1515
EXTVERSION=$(shell cat ../Version.config)
1616
EXTVERSION_MAJOR=$(shell cut -d. -f1,2 ../Version.config)
1717
MODULE_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

2020
UPGRADES = \
2121
$(shell echo $(UPGRADABLE) | \

pgsql/expected/pointcloud.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
44
SELECT PC_Version();
55
pc_version
66
------------
7-
1.2.2
7+
1.2.3
88
(1 row)
99

1010
INSERT INTO pointcloud_formats (pcid, srid, schema)

0 commit comments

Comments
 (0)