Skip to content

Commit

Permalink
Merge pull request #323 from pblottiere/1_2_3
Browse files Browse the repository at this point in the history
Prepare v1.2.3
  • Loading branch information
pblottiere committed Sep 12, 2022
2 parents 629241d + 1bbd124 commit f08b80f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 8 deletions.
13 changes: 13 additions & 0 deletions NEWS
@@ -1,3 +1,16 @@
1.2.3, 2022-09-12
-----------------

- Bug fixes
- Fix segmentation fault in pcpatch_transform (#322)
- Fixes uninitialised schema cache during first call (#317)
- Don't call SPI_finish() when erroring out (#312)
- No crash when an invalid dimensional patch is compressed (#320)

- Enhancements
- Add documentation for debugging with Valgrind (#316)
- Add documentation for debugging with GDB (#321)

1.2.2, 2022-05-10
-----------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -2,7 +2,7 @@

[![Release][release-image]][releases]

[release-image]: https://img.shields.io/badge/release-1.2.2-green.svg?style=plastic
[release-image]: https://img.shields.io/badge/release-1.2.3-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
@@ -1 +1 @@
1.2.2
1.2.3
6 changes: 4 additions & 2 deletions doc/download.rst
Expand Up @@ -13,21 +13,23 @@ Download
Current Release(s)
------------------------------------------------------------------------------

* **10-05-2022** `pointcloud-1.2.2.tar.gz`_ (`Release Notes`_)
* **12-09-2022** `pointcloud-1.2.3.tar.gz`_ (`Release Notes`_)

.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.2/NEWS
.. _`Release Notes`: https://github.com/pgpointcloud/pointcloud/blob/v1.2.3/NEWS


Past Releases
------------------------------------------------------------------------------

* **10-05-2022** `pointcloud-1.2.2.tar.gz`_
* **01-07-2020** `pointcloud-1.2.1.tar.gz`_
* **22-08-2018** `pointcloud-1.2.0.tar.gz`_
* **18-06-2018** `pointcloud-1.1.1.tar.gz`_
* **30-04-2018** `pointcloud-1.1.0.tar.gz`_
* **30-04-2018** `pointcloud-1.0.1.tar.gz`_
* **23-10-2013** `pointcloud-0.1.0.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
.. _`pointcloud-1.2.1.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.1.tar.gz
.. _`pointcloud-1.2.0.tar.gz`: https://github.com/pgpointcloud/pointcloud/archive/v1.2.0.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions doc/index.rst
Expand Up @@ -16,10 +16,10 @@ problems and allows a good integration with other geo-spatial data
News
--------------------------------------------------------------------------------

**10-05-2022**
**12-09-2022**
................................................................................

pgPointcloud 1.2.2 has been released.
pgPointcloud 1.2.3 has been released.


Concepts
Expand Down
2 changes: 1 addition & 1 deletion pgsql/Makefile.in
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
UPGRADABLE = 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2

UPGRADES = \
$(shell echo $(UPGRADABLE) | \
Expand Down
2 changes: 1 addition & 1 deletion pgsql/expected/pointcloud.out
Expand Up @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
SELECT PC_Version();
pc_version
------------
1.2.2
1.2.3
(1 row)

INSERT INTO pointcloud_formats (pcid, srid, schema)
Expand Down

0 comments on commit f08b80f

Please sign in to comment.