From 327689c9a2266864a70c75f9e9bb4cad1163c6b2 Mon Sep 17 00:00:00 2001 From: JunsongDu <101181614+djs0109@users.noreply.github.com> Date: Wed, 12 Feb 2025 16:27:08 +0100 Subject: [PATCH 1/3] Update version for v0.6.1 --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0258b31..729f27d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -### v0.6.x -- add: Tutorial for saving live timeseries data (e.g., forecast) in context broker and timeseries database ([#336](https://github.com/RWTH-EBC/FiLiP/pull/363)) +### v0.6.1 +- add: Tutorial for saving live timeseries data (e.g., forecast) in context broker and timeseries database ([#363](https://github.com/RWTH-EBC/FiLiP/pull/363)) - add: Tutorial for using session object ([#370](https://github.com/RWTH-EBC/FiLiP/pull/370)) - add: Validation of quotation mark in ``q`` strings for NGSI-LD ``get_entities_list`` ([#383](https://github.com/RWTH-EBC/FiLiP/pull/383/files)) - fix: Addition of trailing slash if missing from base url ([#371](https://github.com/RWTH-EBC/FiLiP/pull/371)) From e3b404811d1d02470a82e45d5f7e88382199b4a1 Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Wed, 12 Feb 2025 16:29:41 +0100 Subject: [PATCH 2/3] chore: update version information --- 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 3c0d91b2..d1d5f9ca 100644 --- a/filip/__init__.py +++ b/filip/__init__.py @@ -5,4 +5,4 @@ from filip.config import settings from filip.clients.ngsi_v2 import HttpClient -__version__ = "0.6.0" +__version__ = "0.6.1" diff --git a/setup.py b/setup.py index 1e4997b3..baa11546 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ SETUP_REQUIRES = INSTALL_REQUIRES.copy() -VERSION = "0.6.0" +VERSION = "0.6.1" setuptools.setup( name="filip", From a9d6910657735237a2dd0ed94bf5f9200c491282 Mon Sep 17 00:00:00 2001 From: JunsongDu Date: Wed, 12 Feb 2025 16:31:33 +0100 Subject: [PATCH 3/3] docs: update supported python version --- README.md | 14 +++++++------- setup.py | 1 + 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index a2970d58..ea5a1a96 100644 --- a/README.md +++ b/README.md @@ -71,14 +71,14 @@ You can register for a testing account #### Supported Python Versions -| Version | Status | -|-----------|------------| +| Version | Status | +|-----------|----------------| | 3.7 | ❌ Deprecated | -| 3.8 | ✅ Tested | -| 3.9 | ✅ Tested | -| 3.10 | ✅ Tested | -| 3.11 | ✅ Tested | -| 3.12 | 🔄 Ongoing | +| 3.8 | ✅ Tested | +| 3.9 | ✅ Tested | +| 3.10 | ✅ Tested | +| 3.11 | ✅ Tested | +| 3.12 | ✅ Tested | > ✅ Tested python versions have passed the unittests diff --git a/setup.py b/setup.py index baa11546..db79fe6b 100644 --- a/setup.py +++ b/setup.py @@ -57,6 +57,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: BSD License", ], keywords=["iot", "fiware", "semantic"],