diff --git a/CHANGELOG.md b/CHANGELOG.md index 915ca7c346..7b0352f9c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,10 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## [7.5.0] - 2023-11-29 +### Added +- `chain_to` to `NodeResultSetExpression` and `NodeResultSetExpression`, and `direction` to `NodeResultSetExpression`. + ## [7.4.1] - 2023-11-28 ### Fixed - Error in logic when creating a `Transformation`. This is causing when calling `client.transformations.update`. diff --git a/cognite/client/_version.py b/cognite/client/_version.py index 7aa8b64720..e11a6f90ea 100644 --- a/cognite/client/_version.py +++ b/cognite/client/_version.py @@ -1,4 +1,4 @@ from __future__ import annotations -__version__ = "7.4.1" +__version__ = "7.5.0" __api_subversion__ = "V20220125" diff --git a/pyproject.toml b/pyproject.toml index 659efe0a0e..aab05303ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [tool.poetry] name = "cognite-sdk" -version = "7.4.1" +version = "7.5.0" description = "Cognite Python SDK" readme = "README.md" documentation = "https://cognite-sdk-python.readthedocs-hosted.com"