From 1709aba2a1f1ba1f05fd6459f56f7b621ad840af Mon Sep 17 00:00:00 2001 From: Einar Omang Date: Fri, 15 Nov 2024 14:44:22 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 6 ++++++ cognite/extractorutils/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54e4670..a5eff81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ Changes are grouped as follows - `Fixed` for any bug fixes. - `Security` in case of vulnerabilities. +## 7.5.4 + +### Fixed + + * Fix issue caused by attempting to update file mimeType on AWS clusters. + ## 7.5.3 ### Fixed diff --git a/cognite/extractorutils/__init__.py b/cognite/extractorutils/__init__.py index cd17fb0..9048cf0 100644 --- a/cognite/extractorutils/__init__.py +++ b/cognite/extractorutils/__init__.py @@ -16,5 +16,5 @@ Cognite extractor utils is a Python package that simplifies the development of new extractors. """ -__version__ = "7.5.3" +__version__ = "7.5.4" from .base import Extractor diff --git a/pyproject.toml b/pyproject.toml index c1b9a80..0fabe40 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cognite-extractor-utils" -version = "7.5.3" +version = "7.5.4" description = "Utilities for easier development of extractors for CDF" authors = ["Mathias Lohne "] license = "Apache-2.0"