diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 3023ae4877..496ad8ac1a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "7.91.2" + ".": "7.92.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 472a88179c..172608d168 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,20 @@ As of 2025-08-29, changes are grouped as follows - 🐛 Bug Fixes: Bug fixes. - ⚡ Improvements: Transparent changes, e.g. better performance. +## [7.92.0](https://github.com/cognitedata/cognite-sdk-python/compare/cognite-sdk-python-v7.91.2...cognite-sdk-python-v7.92.0) (2026-02-18) + + +### Features + +* **SyntheticTimeSeries:** add optional timezone argument to the query method ([#2465](https://github.com/cognitedata/cognite-sdk-python/issues/2465)) ([5093814](https://github.com/cognitedata/cognite-sdk-python/commit/5093814213686c91850ad534900fb9a2b889e49c)) +* **workflows:** add maxConcurrentExecutions support ([#2479](https://github.com/cognitedata/cognite-sdk-python/issues/2479)) ([baecf3d](https://github.com/cognitedata/cognite-sdk-python/commit/baecf3dbeafb6e7bebcf418cf28061b9d511eb39)) + + +### Documentation + +* add data modelling debugging data classes to the docs ([#2476](https://github.com/cognitedata/cognite-sdk-python/issues/2476)) ([c523322](https://github.com/cognitedata/cognite-sdk-python/commit/c523322efc23594e36cd6819b8b19783b93dedf5)) +* improve readability of API method signatures ([#2460](https://github.com/cognitedata/cognite-sdk-python/issues/2460)) ([f9cf998](https://github.com/cognitedata/cognite-sdk-python/commit/f9cf998d261a2da6cc1609feaa6ab6055ad137b0)) + ## [7.91.2](https://github.com/cognitedata/cognite-sdk-python/compare/cognite-sdk-python-v7.91.1...cognite-sdk-python-v7.91.2) (2026-01-23) diff --git a/cognite/client/_version.py b/cognite/client/_version.py index 12884b0189..1a6478aeaf 100644 --- a/cognite/client/_version.py +++ b/cognite/client/_version.py @@ -1,5 +1,5 @@ from __future__ import annotations -__version__ = "7.91.2" # x-release-please-version +__version__ = "7.92.0" # x-release-please-version __api_subversion__ = "20230101" diff --git a/pyproject.toml b/pyproject.toml index a17e165775..616573183d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cognite-sdk" -version = "7.91.2" +version = "7.92.0" description = "Cognite Python SDK" readme = "README.md"