Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: v8 #2118

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ Changes are grouped as follows
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [8.0.0a1] - 2025-07-22
### Improved
Everything ofc

## [Unreleased]
### Added
- Support for the `/simulators/models` and `/simulators/models/revisions` API endpoints.
Expand Down
2 changes: 1 addition & 1 deletion cognite/client/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import annotations

__version__ = "7.73.3"
__version__ = "8.0.0a1"

__api_subversion__ = "20230101"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "cognite-sdk"

version = "7.73.3"
version = "8.0.0a1"

description = "Cognite Python SDK"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion scripts/custom_checks/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def pyproj_version_matches() -> str | None:

def _parse_changelog() -> Iterator[Match[str]]:
changelog = (CWD / "CHANGELOG.md").read_text(encoding="utf-8")
return re.finditer(r"##\s\[(\d+\.\d+\.\d+)\]\s-\s(\d+-\d+-\d+)", changelog)
return re.finditer(r"##\s\[(\d+\.\d+\.\d+(?:[abrc]\d+)?)\]\s-\s(\d+-\d+-\d+)", changelog)


def changelog_entry_version_matches() -> str | None:
Expand Down
Loading