[postgis-tickets] [SCM] PostGIS branch stable-3.0 updated. 3.0.3-40-g0599561

git at osgeo.org git at osgeo.org
Fri Sep 3 19:03:08 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, stable-3.0 has been updated
       via  05995619622b81850dd28e63d45c6b3d2f84ed0e (commit)
      from  eddbbc7c80272255e19e01b59ccdb196b5cfc1ec (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 05995619622b81850dd28e63d45c6b3d2f84ed0e
Author: Regina Obe <lr at pcorp.us>
Date:   Fri Sep 3 22:03:02 2021 -0400

    More doco changes

diff --git a/README.postgis b/README.postgis
index 78832c2..a1a96f1 100644
--- a/README.postgis
+++ b/README.postgis
@@ -1,8 +1,8 @@
 PostGIS - Geographic Information Systems Extensions to PostgreSQL
 =================================================================
 
-:Version: 3.0.3
-:Date: 2020-11-19
+:Version: 3.0.4
+:Date: 2021-09-04
 :Website: https://postgis.net
 
 This distribution contains a module which implements GIS simple features, ties
@@ -33,7 +33,7 @@ Directory structure::
 REQUIREMENTS
 ------------
 
-PostGIS is compatible with PostgreSQL 9.5 and above.
+PostGIS is compatible with PostgreSQL 9.5 - 13.
 
 You *must* have the full PostgreSQL - including server headers - installed for
 this to work.
diff --git a/doc/installation.xml b/doc/installation.xml
index 7f84c7d..5a22748 100644
--- a/doc/installation.xml
+++ b/doc/installation.xml
@@ -113,7 +113,7 @@ psql -d yourdatabase -f sfcgal_comments.sql
 	<itemizedlist>
 	  <listitem>
 		<para>
-		  PostgreSQL &min_postgres_version; or higher. A complete installation
+		  PostgreSQL &min_postgres_version; - 13. A complete installation
 		  of PostgreSQL (including server headers) is required. PostgreSQL
 		  is available from
 		  <ulink url="http://www.postgresql.org">
@@ -158,7 +158,7 @@ psql -d yourdatabase -f sfcgal_comments.sql
 
 	  <listitem>
 		<para>
-		  GEOS geometry library, version 3.6 or greater, but GEOS 3.7+ is recommended to take full advantage of all the new functions and features. GEOS is available for download from
+		  GEOS geometry library, version 3.6 or greater, but GEOS 3.8+ is recommended to take full advantage of all the new functions and features. GEOS is available for download from
 		  <ulink url="http://trac.osgeo.org/geos/">
 			http://trac.osgeo.org/geos/
 		  </ulink>.
@@ -2484,33 +2484,33 @@ ALTER EXTENSION postgis_topology UPDATE TO "&last_release_version;next";</progra
 		<programlisting>ALTER TABLE spatial_ref_sys ADD CONSTRAINT spatial_ref_sys_srid_check check (srid > 0 AND srid < 999000 );</programlisting>
 
 		<programlisting>ALTER TABLE spatial_ref_sys ADD PRIMARY KEY(srid));</programlisting>
-	  
+
 		If you are upgrading an old database containing french <ulink url="https://en.wikipedia.org/wiki/Institut_g%C3%A9ographique_national">
 			IGN
-		  </ulink> cartography, you will have probably SRIDs out 
+		  </ulink> cartography, you will have probably SRIDs out
 		of range and you will see, when importing your database, issues like this :
-	  
+
 		<programlisting> WARNING: SRID 310642222 converted to 999175 (in reserved zone)</programlisting>
-	  
-		In this case, you can try following steps : first throw 
-		out completely the IGN from the sql which is resulting 
+
+		In this case, you can try following steps : first throw
+		out completely the IGN from the sql which is resulting
 		from postgis_restore.pl. So, after having run :
-	  
+
 		<programlisting>perl utils/postgis_restore.pl "/somepath/olddb.backup" > olddb.sql</programlisting>
 
 		run this command :
-	  
+
 		<programlisting>grep -v IGNF olddb.sql > olddb-without-IGN.sql</programlisting>
-	  
-		Create then your newdb, activate the required Postgis extensions, 
+
+		Create then your newdb, activate the required Postgis extensions,
 		and insert properly the french system IGN with :
-	  
+
 		<ulink url="https://raw.githubusercontent.com/Remi-C/IGN_spatial_ref_for_PostGIS/master/Put_IGN_SRS_into_Postgis.sql">
 			this script
 		  </ulink>
-	  
+
 		After these operations, import your data :
-	  
+
 		<programlisting>psql -h localhost -p 5432 -U postgres -d newdb -f olddb-without-IGN.sql  2> errors.txt</programlisting>
 
 	</para>

-----------------------------------------------------------------------

Summary of changes:
 README.postgis       |  6 +++---
 doc/installation.xml | 30 +++++++++++++++---------------
 2 files changed, 18 insertions(+), 18 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list