From 27dc393bbe4ec82106acdfe6b0946a211427ceb5 Mon Sep 17 00:00:00 2001 From: Kristian Evers Date: Tue, 1 Mar 2022 20:09:07 +0100 Subject: Update website for 9.0 website --- docs/source/download.rst | 10 +++++--- docs/source/news.rst | 64 ++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 71 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/source/download.rst b/docs/source/download.rst index 70eaf156..60b053ab 100644 --- a/docs/source/download.rst +++ b/docs/source/download.rst @@ -13,8 +13,8 @@ distribution of the source code and various resource file archives. See Current Release -------------------------------------------------------------------------------- -* **2022-01-01** `proj-8.2.1.tar.gz`_ (`md5`_) -* **2021-11-01** `proj-data-1.8.tar.gz`_ +* **2022-03-01** `proj-9.0.0.tar.gz`_ (`md5`_) +* **2022-03-01** `proj-data-1.9.tar.gz`_ * **PDF Manual** `proj.pdf`_ .. note:: @@ -28,6 +28,7 @@ Current Release Past Releases -------------------------------------------------------------------------------- +* **2022-01-01** `proj-8.2.1.tar.gz`_ * **2021-11-01** `proj-8.2.0.tar.gz`_ * **2021-09-01** `proj-8.1.1.tar.gz`_ * **2021-07-01** `proj-8.1.0.tar.gz`_ @@ -55,6 +56,7 @@ Past Releases * **2015-09-13** `proj-4.9.2.tar.gz`_ * **2015-03-04** `proj-4.9.1.tar.gz`_ +* **2021-11-01** `proj-data-1.8.tar.gz`_ * **2021-07-01** `proj-data-1.7.tar.gz`_ * **2021-05-05** `proj-data-1.6.tar.gz`_ * **2021-03-01** `proj-data-1.5.tar.gz`_ @@ -84,8 +86,9 @@ Past Releases * **2018-03-01** `proj-datumgrid-oceania-1.1.zip`_ * **2018-03-01** `proj-datumgrid-oceania-1.0.zip`_ +.. _`proj-9.0.0.tar.gz`: https://download.osgeo.org/proj/proj-9.0.0.tar.gz +.. _`md5`: https://download.osgeo.org/proj/proj-9.0.0.tar.gz.md5 .. _`proj-8.2.1.tar.gz`: https://download.osgeo.org/proj/proj-8.2.1.tar.gz -.. _`md5`: https://download.osgeo.org/proj/proj-8.2.1.tar.gz.md5 .. _`proj-8.2.0.tar.gz`: https://download.osgeo.org/proj/proj-8.2.0.tar.gz .. _`proj-8.2.0.tar.gz`: https://download.osgeo.org/proj/proj-8.2.0.tar.gz .. _`proj-8.1.1.tar.gz`: https://download.osgeo.org/proj/proj-8.1.1.tar.gz @@ -114,6 +117,7 @@ Past Releases .. _`proj-4.9.2.tar.gz`: https://download.osgeo.org/proj/proj-4.9.2.tar.gz .. _`proj-4.9.3.tar.gz`: https://download.osgeo.org/proj/proj-4.9.3.tar.gz +.. _`proj-data-1.9.tar.gz`: https://download.osgeo.org/proj/proj-data-1.9.tar.gz .. _`proj-data-1.8.tar.gz`: https://download.osgeo.org/proj/proj-data-1.8.tar.gz .. _`proj-data-1.7.tar.gz`: https://download.osgeo.org/proj/proj-data-1.7.tar.gz .. _`proj-data-1.6.tar.gz`: https://download.osgeo.org/proj/proj-data-1.6.tar.gz diff --git a/docs/source/news.rst b/docs/source/news.rst index c8277f0d..9a05c4d8 100644 --- a/docs/source/news.rst +++ b/docs/source/news.rst @@ -3,6 +3,70 @@ News ############################################################################### +9.0.0 Release Notes ++++++++++++++++++++ +*March 1st 2022* + + +Breaking Changes +---------------- + +* Support for the autotools build system has been removed (`#3027 `_) + See RFC7 for details: https://proj.org/community/rfc/rfc-7.html + +Updates +-------- + +* Database updates: + + * ESRI projection engine db to version 12.9 (`#2943 `_) + + * EPSG v10.054 (`#3051 `_) + + * Vertical grid files for PL-geoid-2011, Polish geoid model (`#2960 `_) + + * Belgian geoid model hBG18 to grid alternatives (`#3044 `_) + +* Add new option to :c:func:`proj_create_crs_to_crs_from_pj` method to force ``+over`` on + transformation operations (`#2914 `_) + +* Specify ``CMAKE_INSTALL_RPATH`` for macOS; use ``-rpath LDFLAGS`` for tests (`#3009 `_) + +* Implement Geographic3D to Depth/Geog2D+Depth as used by ETRS89 to CD Norway + depth (`#3010 `_) + +* Allow ``PROJ_LIB`` paths wrapped with double quotes (`#3031 `_) + +* Use external gtest by default when possible (`#3035 `_) + +* CMake: make ``BUILD_SHARED_LIBS=ON`` the default even on Windows (`#3042 `_) + +* ``proj.ini``: add a ``ca_bundle_path`` variable (`#3049 `_) + + +Bug fixes +---------- + +* Fix extremely long parsing time on hostile PROJ strings (`#2968 `_) + +* CMake: fix warning with external googletest (`#2980 `_) + +* :c:func:`proj_get_crs_info_list_from_database()``: report ``PJ_TYPE_GEODETIC_CRS`` for + IAU_2015 -ocentric geodetic CRS (`#3013 `_) + +* peirce_q: rename ``+type`` parameter wrongly introduced in 8.2.1 to ``+shape`` (`#3014 `_) + +* Set more precise error code for parsing errors in :c:func:`proj_create()`` (`#3037 `_) + +* :cpp:func:``createOperations()``: fix transformations from/to a BoundCRS of a + DerivedGeographicCRS coming from WKT (`#3046 `_) + +* Better deal with importing strings like ``+init=epsg:XXXX +over`` (`#3055 `_) + +* Fix importing CRS definition with ``+proj=peirce_q`` and ``+shape`` different from + square or diamond (`#3057 `_) + + 8.2.1 Release Notes +++++++++++++++++++ *January 1st 2022* -- cgit v1.2.3