From b72d87591e404040c7097e7d0804dc4e7420f770 Mon Sep 17 00:00:00 2001 From: Hemant Mishra Date: Wed, 5 Nov 2025 19:07:20 +0530 Subject: [PATCH 1/2] Release version 7.9.1 --- 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 7336a159..910ea745 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.9.1 + +### Added + +* Added support for the dataset, dataset_external_id and upload_queue_size in the Extractor Base Config. + ## 7.9.0 ### Changed diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index 7718c910..ca6f0ca1 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.9.0" +__version__ = "7.9.1" from .base import Extractor __all__ = ["Extractor"] diff --git a/pyproject.toml b/pyproject.toml index 6b4be682..e6dc0cfd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cognite-extractor-utils" -version = "7.9.0" +version = "7.9.1" description = "Utilities for easier development of extractors for CDF" authors = [ {name = "Mathias Lohne", email = "mathias.lohne@cognite.com"} From a1d3967c5c4688441df525077a16d1c249226652 Mon Sep 17 00:00:00 2001 From: Hemant Mishra Date: Thu, 6 Nov 2025 13:04:37 +0530 Subject: [PATCH 2/2] PR review changes --- CHANGELOG.md | 4 ++-- cognite/extractorutils/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 910ea745..9d368e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,11 +13,11 @@ Changes are grouped as follows - `Security` in case of vulnerabilities. -## 7.9.1 +## 7.10.0 ### Added -* Added support for the dataset, dataset_external_id and upload_queue_size in the Extractor Base Config. +* Added support for dataset, dataset_external_id and upload_queue_size in the Extractor Base Config. ## 7.9.0 diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index ca6f0ca1..ff5383df 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.9.1" +__version__ = "7.10.0" from .base import Extractor __all__ = ["Extractor"] diff --git a/pyproject.toml b/pyproject.toml index e6dc0cfd..2bc57839 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cognite-extractor-utils" -version = "7.9.1" +version = "7.10.0" description = "Utilities for easier development of extractors for CDF" authors = [ {name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}