Skip to content

Commit 28ac10b

Browse files
authored
Prepare new release 7.8.0 (#478)
1 parent ef0da66 commit 28ac10b

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,16 @@ Changes are grouped as follows
1212
- `Fixed` for any bug fixes.
1313
- `Security` in case of vulnerabilities.
1414

15-
## Next
15+
## 7.8.0
1616

1717
### Added
1818

1919
* Ability for users to customize the working directory of the extractor using the `--cwd` flag in the CLI.
2020
* Added a new command-line argument, --log-level (-l) to allow users to override configured log levels for a single run.
21+
* Added a new --service CLI argument to allow users to run the application as a Windows service.
22+
23+
### Fixed
24+
* Fixed encoding issue on Windows by enforcing UTF-8 for consistent behavior across platforms.
2125

2226
## 7.7.0
2327

cognite/extractorutils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
Cognite extractor utils is a Python package that simplifies the development of new extractors.
1717
"""
1818

19-
__version__ = "7.7.0"
19+
__version__ = "7.8.0"
2020
from .base import Extractor
2121

2222
__all__ = ["Extractor"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cognite-extractor-utils"
3-
version = "7.7.0"
3+
version = "7.8.0"
44
description = "Utilities for easier development of extractors for CDF"
55
authors = [
66
{name = "Mathias Lohne", email = "mathias.lohne@cognite.com"}

0 commit comments

Comments
 (0)