From e11a35ed89ad0a1eca1000a8e657ebc8d5b42154 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Fri, 5 Jun 2020 07:41:30 -0400 Subject: [PATCH 1/2] update release version 0.20.0 --- CHANGES.rst | 17 +++++++++++++++++ VERSION.txt | 2 +- owslib/__init__.py | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d09867a8e..aa855ca36 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,23 @@ Changes ======= +0.20.0 (2020-06-05) +------------------- + +This release provides initial support for the draft OGC API - Records +standard. + +A full list of commits for 0.20.0 can be found at: + +https://github.com/geopython/OWSLib/commits/0.20.0 + +- WFS: make wfs:FeatureTypeList optional for 1.1 and 2.0 +- OGC API - Records: initial draft implementation +- WPS: add support for retrieving data from local filesystem (huard) +- WMTS: add support for boundingboxes (kordian-kowalski) +- Authentication: Enable switching off SSL verification (Samweli) + + 0.19.2 (2020-03-13) ------------------- diff --git a/VERSION.txt b/VERSION.txt index 61e6e92d9..5a03fb737 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.19.2 +0.20.0 diff --git a/owslib/__init__.py b/owslib/__init__.py index 5daae67f7..2f15b8cd3 100644 --- a/owslib/__init__.py +++ b/owslib/__init__.py @@ -1 +1 @@ -__version__ = '0.19.2' +__version__ = '0.20.0' From 868fe1cce48b21ed5e15447266ecee8b4886d399 Mon Sep 17 00:00:00 2001 From: Carsten Ehbrecht Date: Fri, 5 Jun 2020 14:26:50 +0200 Subject: [PATCH 2/2] added PR links --- CHANGES.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index aa855ca36..20849f1c9 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -11,11 +11,11 @@ A full list of commits for 0.20.0 can be found at: https://github.com/geopython/OWSLib/commits/0.20.0 -- WFS: make wfs:FeatureTypeList optional for 1.1 and 2.0 -- OGC API - Records: initial draft implementation -- WPS: add support for retrieving data from local filesystem (huard) -- WMTS: add support for boundingboxes (kordian-kowalski) -- Authentication: Enable switching off SSL verification (Samweli) +- WFS: make wfs:FeatureTypeList optional for 1.1 and 2.0 (#673) +- OGC API - Records: initial draft implementation (#679, #693) +- WPS: add support for retrieving data from local filesystem (huard, #681) +- WMTS: add support for boundingboxes (kordian-kowalski, #687) +- Authentication: Enable switching off SSL verification (Samweli, #685) 0.19.2 (2020-03-13)