File tree 8 files changed +17
-9
lines changed
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
+
1
7
1.2.4, 2022-09-26
2
8
-----------------
3
9
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Release] [ release-image ]] [ releases ]
4
4
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
6
6
[ releases ] : https://github.com/pgpointcloud/pointcloud/releases
7
7
8
8
A 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
13
13
Current Release(s)
14
14
------------------------------------------------------------------------------
15
15
16
- * **26 -09-2022 ** `pointcloud-1.2.4 .tar.gz `_ (`Release Notes `_)
16
+ * **19 -09-2023 ** `pointcloud-1.2.5 .tar.gz `_ (`Release Notes `_)
17
17
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
19
19
20
20
21
21
Past Releases
22
22
------------------------------------------------------------------------------
23
23
24
+ * **26-09-2022 ** `pointcloud-1.2.4.tar.gz `_
24
25
* **12-09-2022 ** `pointcloud-1.2.3.tar.gz `_
25
26
* **10-05-2022 ** `pointcloud-1.2.2.tar.gz `_
26
27
* **01-07-2020 ** `pointcloud-1.2.1.tar.gz `_
@@ -30,6 +31,7 @@ Past Releases
30
31
* **30-04-2018 ** `pointcloud-1.0.1.tar.gz `_
31
32
* **23-10-2013 ** `pointcloud-0.1.0.tar.gz `_
32
33
34
+ .. _`pointcloud-1.2.5.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.5.tar.gz
33
35
.. _`pointcloud-1.2.4.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.4.tar.gz
34
36
.. _`pointcloud-1.2.3.tar.gz` : https://github.com/pgpointcloud/pointcloud/archive/v1.2.3.tar.gz
35
37
.. _`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
16
16
News
17
17
--------------------------------------------------------------------------------
18
18
19
- **26 -09-2022 **
19
+ **19 -09-2023 **
20
20
................................................................................
21
21
22
- pgPointcloud 1.2.4 has been released.
22
+ pgPointcloud 1.2.5 has been released.
23
23
24
24
25
25
Concepts
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ EXTENSION = pointcloud
15
15
EXTVERSION =$(shell cat ../Version.config)
16
16
EXTVERSION_MAJOR =$(shell cut -d. -f1,2 ../Version.config)
17
17
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
19
19
20
20
UPGRADES = \
21
21
$(shell echo $(UPGRADABLE ) | \
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ CREATE EXTENSION pointcloud;
4
4
SELECT PC_Version();
5
5
pc_version
6
6
------------
7
- 1.2.4
7
+ 1.2.5
8
8
(1 row)
9
9
10
10
INSERT INTO pointcloud_formats (pcid, srid, schema)
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ SED = sed
8
8
EXTENSION = pointcloud_postgis
9
9
EXTVERSION =$(shell cat ../Version.config)
10
10
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
12
12
UPGRADES = \
13
13
$(shell echo $(UPGRADABLE ) | \
14
14
$(SED ) 's/^/$(EXTENSION ) --/' | \
You can’t perform that action at this time.
0 commit comments