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)) 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/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..db79fe6b 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", @@ -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"],