Skip to content

Commit

Permalink
time_series_mapping yaml as optional (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
Juliamg authored Aug 3, 2023
1 parent 73b8139 commit fda2e68
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Changes are grouped as follows
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.33.1] - 2023-08-03

### Changed
* ResyncConfig.cogshop to have time_series_mappings as optional.

## [0.33.0] - 2023-07-26

### Removed
Expand Down
2 changes: 1 addition & 1 deletion cognite/powerops/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.33.0"
__version__ = "0.33.1"
2 changes: 1 addition & 1 deletion cognite/powerops/resync/config/resync_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def load_yamls(cls, config_dir_path: Path, instantiate: bool = False) -> dict[st


class CogShopConfig(Config):
time_series_mappings: list[TimeSeriesMapping]
time_series_mappings: Optional[list[TimeSeriesMapping]] = None
watercourses_shop: list[ShopFileConfig]


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognite-power-ops"
version = "0.33.0"
version = "0.33.1"
description = "SDK for power markets operations on Cognite Data Fusion"
readme = "README.md"
authors = ["Cognite <[email protected]>"]
Expand Down

0 comments on commit fda2e68

Please sign in to comment.