diff --git a/CHANGELOG.md b/CHANGELOG.md index 9314691b..202376ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,9 @@ ### v0.4.1 - fix: Session added as optional parameter to enable tls communication with clients ([#249](https://github.com/RWTH-EBC/FiLiP/pull/249)) +- fix: add missing package ``geojson_pydantic`` in setup.py ([#276](https://github.com/RWTH-EBC/FiLiP/pull/276)) - add: support entity creation with keyvalues ([#264](https://github.com/RWTH-EBC/FiLiP/pull/264)) + #### v0.4.0 - add tutorial for protected endpoint with bearer authentication ([#208](https://github.com/RWTH-EBC/FiLiP/issues/208)) - add internal mqtt url for unittests @djs0109 ([#239](https://github.com/RWTH-EBC/FiLiP/pull/239)) diff --git a/filip/__init__.py b/filip/__init__.py index 0916bc06..82b1b4d3 100644 --- a/filip/__init__.py +++ b/filip/__init__.py @@ -4,4 +4,4 @@ from filip.config import settings from filip.clients.ngsi_v2 import HttpClient -__version__ = '0.4.0' +__version__ = '0.4.1' diff --git a/requirements.txt b/requirements.txt index e96edca2..a85eb07b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,7 +2,7 @@ requests~=2.31.0 python-dotenv>=0.21.0 pydantic>=2.5.2,<2.7.0 pydantic-settings>=2.0.0,<2.3.0 -geojson_pydantic~=1.0.2 +geojson-pydantic~=1.0.2 aenum~=3.1.15 pathlib~=1.0.1 regex~=2023.10.3 diff --git a/setup.py b/setup.py index 4da70cd2..14b68d89 100644 --- a/setup.py +++ b/setup.py @@ -18,11 +18,12 @@ 'regex~=2023.10.3', 'requests~=2.31.0', 'rapidfuzz~=3.4.0', + 'geojson-pydantic~=1.0.2', 'wget~=3.2'] SETUP_REQUIRES = INSTALL_REQUIRES.copy() -VERSION = '0.4.0' +VERSION = '0.4.1' setuptools.setup( name='filip',