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

404 release preparation v062 #405

Merged
merged 3 commits into from
Mar 7, 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
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/release_prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ assignees: ''
**Release Version**
Specify the version number for the release (e.g., v0.7.1):

**What is changed?**
TODO: please at least copy the release note here, afterwards

**Checklist**
Following steps will be checked:
- [ ] Revise the changelog if necessary
Expand Down
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
### v0.6.x
### v0.6.2
- add: New features to validate and update relationships for V2 entities ([#380](https://github.com/RWTH-EBC/FiLiP/pull/380))
- add: ngsi-ld support for entity creation and update with keyvalues format ([#394](https://github.com/RWTH-EBC/FiLiP/pull/394))
- fix: exception handling for special characters in attribute value ([#381](https://github.com/RWTH-EBC/FiLiP/pull/381))
- update: relax pydantic requirements ([#390](https://github.com/RWTH-EBC/FiLiP/pull/390))
- update: pandas requirement from ~=1.3.5 to >=1.3.5,<2.3.0 ([#396](https://github.com/RWTH-EBC/FiLiP/pull/396))

### 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))
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.1"
__version__ = "0.6.2"
2 changes: 1 addition & 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.1"
VERSION = "0.6.2"

setuptools.setup(
name="filip",
Expand Down