diff --git a/CHANGELOG.md b/CHANGELOG.md index 86afd103..0dc56f00 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,14 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. + +## 7.11.2 + +### Fixed + +* In the `unstable` package: Fixed a metrics pickling error — the runtime no longer passes a `Metrics` instance; extractors are now responsible for creating and managing their own `Metrics` instance. + + ## 7.11.1 ### Fixed diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index bda71647..c04f427e 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.1" +__version__ = "7.11.2" from .base import Extractor __all__ = ["Extractor"] diff --git a/pyproject.toml b/pyproject.toml index 69799b90..219c9f71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cognite-extractor-utils" -version = "7.11.1" +version = "7.11.2" description = "Utilities for easier development of extractors for CDF" authors = [ {name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}