From 31ad3932572b017f16cbaab817585e0c8c7650c1 Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Tue, 23 Apr 2024 10:07:29 +0200 Subject: [PATCH 1/4] fix: add geojson_pydantic in setup.py --- CHANGELOG.md | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50af7422..f4d54bd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ ### 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 #### v0.4.0 - add tutorial for protected endpoint with bearer authentication ([#208](https://github.com/RWTH-EBC/FiLiP/issues/208)) diff --git a/setup.py b/setup.py index 4da70cd2..e4cffec3 100644 --- a/setup.py +++ b/setup.py @@ -18,6 +18,7 @@ '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() From 77b96aa8e88a77fd0bbcb975527ad80465255753 Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Tue, 23 Apr 2024 10:14:40 +0200 Subject: [PATCH 2/4] docs: add link in changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4d54bd6..c1b940f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ### 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 +- fix: add missing package ``geojson_pydantic`` in setup.py ([#276](https://github.com/RWTH-EBC/FiLiP/pull/276)) #### v0.4.0 - add tutorial for protected endpoint with bearer authentication ([#208](https://github.com/RWTH-EBC/FiLiP/issues/208)) From ecf11c89c9e6b7bbfaf8f1dcb2de71b8bf20bc5a Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Wed, 24 Apr 2024 08:51:49 +0200 Subject: [PATCH 3/4] chore: name of geojson-pydantic --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 e4cffec3..e8e6e6d0 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'regex~=2023.10.3', 'requests~=2.31.0', 'rapidfuzz~=3.4.0', - 'geojson_pydantic~=1.0.2', + 'geojson-pydantic~=1.0.2', 'wget~=3.2'] SETUP_REQUIRES = INSTALL_REQUIRES.copy() From 6f473684446d34b0f446621211aa49fc0f83612f Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Wed, 24 Apr 2024 08:52:08 +0200 Subject: [PATCH 4/4] chore: update release version --- filip/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/setup.py b/setup.py index e8e6e6d0..14b68d89 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ SETUP_REQUIRES = INSTALL_REQUIRES.copy() -VERSION = '0.4.0' +VERSION = '0.4.1' setuptools.setup( name='filip',