diff --git a/HISTORY.rst b/HISTORY.rst index 4f0433c..7901b3e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,21 @@ History ======= +0.15.1 (2023-07-27) +------------------- +Contributor: [Fernando Aristizabal](https://github.com/fernando-aristizabal) + +From release 0.15 onward, all minor versions of HyRiver packages +will be pinned. This ensures that previous minor versions of HyRiver +packages cannot be installed with later minor releases. For example, +if you have ``pygeoogc==0.14.x`` installed, you cannot install +``pygeoogc==0.15.x`` series. This is to ensure that the API is +consistent across all minor versions. + +New Features +~~~~~~~~~~~~ +- Added RESTfulURLs for STN Flood Event Data Retriever. + 0.15.0 (2023-05-07) ------------------- From release 0.15 onward, all minor versions of HyRiver packages diff --git a/pygeoogc/pygeoogc.py b/pygeoogc/pygeoogc.py index e83ec22..bd766d6 100644 --- a/pygeoogc/pygeoogc.py +++ b/pygeoogc/pygeoogc.py @@ -796,6 +796,8 @@ class RESTfulURLs(NamedTuple): "https://index.nationalmap.gov/arcgis/rest/services/3DEPElevationIndex/MapServer" ) geoconnex: str = "https://reference.geoconnex.us" + stnflood: str = "https://stn.wim.usgs.gov/STNServices/" + stnflood_dd: str = "https://stn.wim.usgs.gov/STNWeb/datadictionary/" class WFSURLs(NamedTuple):