Skip to content

Commit

Permalink
CDF-22143: fix missing exports for workflow triggers (#1894)
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent-cognite authored Aug 29, 2024
1 parent 83f4aa5 commit b201be9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
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.

## [7.55.1] - 2024-08-29
### Fixed
- Missing exports for workflow triggers

## [7.55.0] - 2024-08-23
### Added
- Support for creating a session using a one-shot token in the `client.iam.session.create` method.
Expand Down
2 changes: 1 addition & 1 deletion cognite/client/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations

__version__ = "7.55.0"
__version__ = "7.55.1"
__api_subversion__ = "20230101"
11 changes: 11 additions & 0 deletions cognite/client/data_classes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,6 +303,11 @@
WorkflowList,
WorkflowTask,
WorkflowTaskExecution,
WorkflowTrigger,
WorkflowTriggerCreate,
WorkflowTriggerList,
WorkflowTriggerRun,
WorkflowTriggerRunList,
WorkflowUpsert,
WorkflowUpsertList,
WorkflowVersion,
Expand Down Expand Up @@ -569,6 +574,12 @@
"WorkflowTask",
"WorkflowUpsertList",
"WorkflowVersionUpsertList",
"WorkflowVersionUpsertList",
"WorkflowTrigger",
"WorkflowTriggerCreate",
"WorkflowTriggerList",
"WorkflowTriggerRun",
"WorkflowTriggerRunList",
"HasName",
"HasExternalId",
"HasInternalId",
Expand Down
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.55.0"
version = "7.55.1"
description = "Cognite Python SDK"
readme = "README.md"
documentation = "https://cognite-sdk-python.readthedocs-hosted.com"
Expand Down

0 comments on commit b201be9

Please sign in to comment.