Skip to content

Commit

Permalink
Update base.txt, CHANGELOG.rst, and 5 more files...
Browse files Browse the repository at this point in the history
  • Loading branch information
jokiefer committed Apr 3, 2024
1 parent 2a9c024 commit 86998ce
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .requirements/base.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Django>=3.2,<5.0
django-axis-order==0.1.1
django-epsg-cache==0.2.0
eulxml==1.1.3
isodate==0.6.1
camel-converter==3.1.1
Expand Down
44 changes: 27 additions & 17 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).



[v0.14.4] - 2024-04-03
----------------------

Changed
~~~~~~~

* moved to `django-epsg-cache`


[v0.14.3] - 2024-03-15
---------------------
----------------------

Fixed
~~~~~

* service version was not passed trough `transform_to_model` correctly.

[v0.14.2] - 2024-03-15
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -25,15 +35,15 @@ Fixed


[v0.14.1] - 2024-03-15
---------------------
----------------------

Fixed
~~~~~

* wrong xpath for operation urls

[v0.14.0] - 2024-02-21
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -43,7 +53,7 @@ Fixed


[v0.13.0] - 2023-12-15
---------------------
----------------------

Added
~~~~~
Expand All @@ -52,7 +62,7 @@ Added


[v0.12.7] - 2023-12-15
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -61,7 +71,7 @@ Fixed


[v0.12.6] - 2023-12-12
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -70,7 +80,7 @@ Fixed


[v0.12.5] - 2023-12-12
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -79,7 +89,7 @@ Fixed


[v0.12.3] - 2023-12-12
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -89,7 +99,7 @@ Fixed


[v0.12.2] - 2023-12-11
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -99,7 +109,7 @@ Fixed


[v0.12.1] - 2023-12-04
---------------------
----------------------

Changed
~~~~~~~
Expand All @@ -108,7 +118,7 @@ Changed


[v0.12.0] - 2023-11-30
---------------------
----------------------

Changed
~~~~~~~
Expand All @@ -117,7 +127,7 @@ Changed


[v0.11.3] - 2023-11-22
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -127,7 +137,7 @@ Fixed


[v0.11.2] - 2023-11-22
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -136,7 +146,7 @@ Fixed


[v0.11.1] - 2023-11-22
---------------------
----------------------

Fixed
~~~~~
Expand All @@ -146,7 +156,7 @@ Fixed


[v0.11.0] - 2023-11-21
---------------------
----------------------

Added
~~~~~
Expand All @@ -156,7 +166,7 @@ Added


[v0.10.0] - 2023-11-14
---------------------
----------------------

Added
~~~~~
Expand Down
2 changes: 1 addition & 1 deletion ows_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.14.3"
__version__ = "0.14.4"
VERSION = __version__ # synonym
4 changes: 2 additions & 2 deletions ows_lib/client/utils.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import urllib.parse
from typing import Dict, List

from axis_order_cache.registry import Registry
from axis_order_cache.utils import get_epsg_srid
from django.contrib.gis.gdal import SpatialReference
from django.contrib.gis.geos import GEOSGeometry, Polygon
from epsg_cache.registry import Registry
from epsg_cache.utils import get_epsg_srid
from requests import Session

from ows_lib.client.exceptions import (MissingBboxParam, MissingCrsParam,
Expand Down
2 changes: 1 addition & 1 deletion ows_lib/xml_mapper/gml/gml.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from axis_order_cache.utils import get_epsg_srid
from django.contrib.gis.geos import GEOSGeometry
from epsg_cache.utils import get_epsg_srid
from eulxml import xmlmap


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

REQUIREMENTS = [
"django>=3.0",
"django-axis-order>=0.1.0",
"django-epsg-cache>=0.2.0",
"eulxml>=1.1.3",
"isodate>=0.6.1",
"camel-converter>=3.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ deps=
requests228: requests>=2.28.0,<2.29.0
requests229: requests>=2.29.0,<2.30.0
pygeofilter021: pygeofilter>=0.2.1,<0.3.0
django-axis-order==0.1.0
django-epsg-cache==0.2.0
eulxml==1.1.3
isodate==0.6.1
camel-converter==3.0.0
Expand Down

0 comments on commit 86998ce

Please sign in to comment.