Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

391 release preparation v0 6 1 #392

Merged
merged 3 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion filip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from filip.config import settings
from filip.clients.ngsi_v2 import HttpClient

__version__ = "0.6.0"
__version__ = "0.6.1"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

SETUP_REQUIRES = INSTALL_REQUIRES.copy()

VERSION = "0.6.0"
VERSION = "0.6.1"

setuptools.setup(
name="filip",
Expand Down Expand Up @@ -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"],
Expand Down