From a035b029f90c30138928063fa1c95f9053371c77 Mon Sep 17 00:00:00 2001 From: devendra-lohar Date: Mon, 8 Dec 2025 11:48:30 +0530 Subject: [PATCH] prepare new release --- CHANGELOG.md | 5 +++++ cognite/extractorutils/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e216cb7..86afd103 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,11 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## 7.11.1 + +### Fixed + +* `CognitePusher` now automatically creates timeseries for late-registered metrics (e.g., python_gc_*, python_info), preventing "Time series not found" errors during shutdown. ## 7.11.0 diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index ef9f8213..bda71647 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.0" +__version__ = "7.11.1" from .base import Extractor __all__ = ["Extractor"] diff --git a/pyproject.toml b/pyproject.toml index fa581fa8..69799b90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cognite-extractor-utils" -version = "7.11.0" +version = "7.11.1" description = "Utilities for easier development of extractors for CDF" authors = [ {name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}