From ba51afec9eaa51f34330ef58aa00e60a1ba83868 Mon Sep 17 00:00:00 2001 From: Hemant Mishra Date: Mon, 23 Mar 2026 14:07:59 +0530 Subject: [PATCH] Release version --- CHANGELOG.md | 7 +++++++ cognite/extractorutils/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ddc905f5..f3925e84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,13 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## 7.12.0 + +### Added +* In the `unstable` package: Config schemas for unstable module including connection config, schedule, retries, and state store configurations +### Fixed +* In the `unstable` package: Reset startup properly when extractor is restarted to handle restart scenarios correctly + ## 7.11.6 ### Fixed diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index aa5d0a7c..a8cec2e1 100644 --- a/cognite/extractorutils/__init__.py +++ b/cognite/extractorutils/__init__.py @@ -16,7 +16,7 @@ Cognite extractor utils is a Python package that simplifies the development of new extractors. """ -__version__ = "7.11.6" +__version__ = "7.12.0" from .base import Extractor __all__ = ["Extractor"] diff --git a/pyproject.toml b/pyproject.toml index 29d43f27..77ece1f1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cognite-extractor-utils" -version = "7.11.6" +version = "7.12.0" description = "Utilities for easier development of extractors for CDF" authors = [ {name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}