diff --git a/CHANGES.rst b/CHANGES.rst index d09867a8e..20849f1c9 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 (#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) ------------------- 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'