Skip to content

Commit 4b15688

Browse files
committed
Prepare v1.2.5
1 parent 5300472 commit 4b15688

File tree

8 files changed

+17
-9
lines changed

8 files changed

+17
-9
lines changed

NEWS

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.2.5, 2023-09-19
2+
-----------------
3+
4+
- Bug fixes
5+
- Fix compilation with PostgreSQL 16 (#340)
6+
17
1.2.4, 2022-09-26
28
-----------------
39

README.md

+1-1
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.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

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

Version.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.2.4
1+
1.2.5

doc/download.rst

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ Download
1313
Current 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

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

doc/index.rst

+2-2
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-
**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

2525
Concepts

pgsql/Makefile.in

+1-1
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 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

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

pgsql/expected/pointcloud.out

+1-1
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.4
7+
1.2.5
88
(1 row)
99

1010
INSERT INTO pointcloud_formats (pcid, srid, schema)

pgsql_postgis/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ SED = sed
88
EXTENSION = pointcloud_postgis
99
EXTVERSION=$(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
1212
UPGRADES = \
1313
$(shell echo $(UPGRADABLE) | \
1414
$(SED) 's/^/$(EXTENSION)--/' | \

0 commit comments

Comments
 (0)