From 9b0fac09bbd125e705e2248790ba48118b6dca43 Mon Sep 17 00:00:00 2001 From: jokiefer Date: Thu, 14 Sep 2023 14:07:08 +0200 Subject: [PATCH] Update CHANGELOG.rst, __init__.py, and mixins.py --- CHANGELOG.rst | 6 ++++++ ows_lib/__init__.py | 2 +- ows_lib/xml_mapper/capabilities/mixins.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0d60f73..d2cf811 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,13 @@ All notable changes to this project will be documented in this file. 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.5.1] - 2023-09-14 +--------------------- + +Fixed +~~~~~ +* remove `super().transform_to_model()` at `OperationUrl` object [v0.5.0] - 2023-09-14 diff --git a/ows_lib/__init__.py b/ows_lib/__init__.py index 8f9ef37..06f8ffe 100644 --- a/ows_lib/__init__.py +++ b/ows_lib/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" VERSION = __version__ # synonym diff --git a/ows_lib/xml_mapper/capabilities/mixins.py b/ows_lib/xml_mapper/capabilities/mixins.py index 6c8d798..d82e11c 100644 --- a/ows_lib/xml_mapper/capabilities/mixins.py +++ b/ows_lib/xml_mapper/capabilities/mixins.py @@ -62,7 +62,7 @@ def mime_types(self, value: List[str]): self._callback(self) def transform_to_model(self) -> Dict: - attr = super().transform_to_model() + attr = {} if self.operation: attr.update({"operation": self.operation}) if self.url: