Merge pull request #329 from pblottiere/remove_pg96

Update NEWS (remove PG 9.6 support in 1.2.2) and doc
This commit is contained in:
Paul Blottiere 2022-09-26 10:32:05 +02:00 committed by GitHub
commit 6b60f6fa0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 4 deletions

12
NEWS
View File

@ -1,3 +1,12 @@
1.2.4.dev
---------
- Bug fixes
- Add upgrade paths for pointcloud_postgis (#327)
- Enhancements
- Add support for PostgreSQL 15 (#318)
1.2.3, 2022-09-12
-----------------
@ -14,6 +23,9 @@
1.2.2, 2022-05-10
-----------------
- Breaking changes
- Drop support for PG 9.6
- Bug fixes
- Fix dump and restore #301 #306
- Fix compilation with GCC 10.1 #273

View File

@ -17,4 +17,4 @@ https://pgpointcloud.github.io/pointcloud/ for more information.
| PostgreSQL 12 | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-18.04%5D%20PostgreSQL%2012%20and%20PostGIS%202.5?label=Ubuntu%2018.04&logo=github&style=plastic) | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-18.04%5D%20PostgreSQL%2012%20and%20PostGIS%203.2?label=Ubuntu%2018.04&logo=github&style=plastic)<br />![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-20.04%5D%20PostgreSQL%2012%20and%20PostGIS%203.2?label=Ubuntu%2020.04&logo=github&style=plastic) |
| PostgreSQL 13 | | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-20.04%5D%20PostgreSQL%2013%20and%20PostGIS%203.2?label=Ubuntu%2020.04&logo=github&style=plastic) |
| PostgreSQL 14 | | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-20.04%5D%20PostgreSQL%2014%20and%20PostGIS%203.2?label=Ubuntu%2020.04&logo=github&style=plastic) |
| PostgreSQL 15 Beta | | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-20.04%5D%20PostgreSQL%2015%20and%20PostGIS%203.2?label=Ubuntu%2020.04&logo=github&style=plastic) |
| PostgreSQL 15 | | ![](https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-20.04%5D%20PostgreSQL%2015%20and%20PostGIS%203.2?label=Ubuntu%2020.04&logo=github&style=plastic) |

View File

@ -151,7 +151,7 @@ and with various PostgreSQL/PostGIS releases:
+--------------------+-----------------------+------------------------+
| PostgreSQL 14 | | |14_32_focal| |
+--------------------+-----------------------+------------------------+
| PostgreSQL 15 Beta | | |15_32_focal| |
| PostgreSQL 15 | | |15_32_focal| |
+--------------------+-----------------------+------------------------+
.. |10_25_bionic| image:: https://img.shields.io/github/workflow/status/pgpointcloud/pointcloud/%5Bubuntu-18.04%5D%20PostgreSQL%2010%20and%20PostGIS%202.5?label=Ubuntu%2018.04&logo=github&style=plastic :target: https://github.com/pgpointcloud/pointcloud/actions?query=workflow%3A%22%5Bubuntu-18.04%5D+PostgreSQL+10+and+PostGIS+2.5%22

View File

@ -21,8 +21,14 @@ the version currently used with versions actually available on your system:
--> 1.2.1
Then you can update to the latest version with ``ALTER EXTENSION pointcloud
UPDATE`` or target a specific version:
Then you can update to the latest version:
.. code-block:: sql
ALTER EXTENSION pointcloud;
ALTER EXTENSION pointcloud_postgis;
or target a specific version:
.. code-block:: sql