Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: MIT

[tool.bumpversion]
current_version = "2.0.3"
current_version = "2.0.4"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For each version, important additions, changes and removals are listed here.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [2.0.4] - Patch Release - Patch Dataset Id - 2025-03-11

### Added
- Introduce scoped context for spatial and temporal objects [(#260)](https://github.com/OpenEnergyPlatform/oemetadata/pull/260)
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ authors:
title: "Open Energy Family - Open Energy Metadata (OEMetadata)"
type: software
license: MIT
version: 2.0.3
version: 2.0.4
doi:
date-released: 2025-01-24
url: "https://github.com/OpenEnergyPlatform/oemetadata"
4 changes: 2 additions & 2 deletions oemetadata/latest/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
},
{
"name": "is_active",
"description": "Betriebsstaus",
"description": "Betriebsstatus",
"type": "boolean",
"nullable": false,
"unit": null,
Expand Down Expand Up @@ -339,7 +339,7 @@
}
],
"metaMetadata": {
"metadataVersion": "OEMetadata-2.0.3",
"metadataVersion": "OEMetadata-2.0.4",
"metadataLicense": {
"name": "CC0-1.0",
"title": "Creative Commons Zero v1.0 Universal",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/latest/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@
"metadataVersion": {
"description": "Type and version number of the metadata.",
"examples": [
"OEMetadata-2.0.3"
"OEMetadata-2.0.4"
],
"type": [
"string",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/latest/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
}
],
"metaMetadata": {
"metadataVersion": "OEMetadata-2.0.3",
"metadataVersion": "OEMetadata-2.0.4",
"metadataLicense": {
"name": "CC0-1.0",
"title": "Creative Commons Zero v1.0 Universal",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/v2/v20/build_source/schemas/meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"metadataVersion": {
"description": "Type and version number of the metadata.",
"examples": [
"OEMetadata-2.0.3"
"OEMetadata-2.0.4"
],
"type": [
"string",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/v2/v20/build_source/scripts/create_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def replace_key_in_json(file_path, target_key, new_value):
logger.info("Generation started.")
main()
replace_key_in_json(TEMPLATE_PATH, "boundingBox", [0, 0, 0, 0])
replace_key_in_json(TEMPLATE_PATH, "metadataVersion", "OEMetadata-2.0.3")
replace_key_in_json(TEMPLATE_PATH, "metadataVersion", "OEMetadata-2.0.4")
replace_key_in_json(
TEMPLATE_PATH,
"metadataLicense",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/v2/v20/build_source/scripts/example/fields.json
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
},
{
"name": "is_active",
"description": "Betriebsstaus",
"description": "Betriebsstatus",
"type": "boolean",
"nullable": false,
"unit": null,
Expand Down
4 changes: 2 additions & 2 deletions oemetadata/v2/v20/example.json
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@
},
{
"name": "is_active",
"description": "Betriebsstaus",
"description": "Betriebsstatus",
"type": "boolean",
"nullable": false,
"unit": null,
Expand Down Expand Up @@ -339,7 +339,7 @@
}
],
"metaMetadata": {
"metadataVersion": "OEMetadata-2.0.3",
"metadataVersion": "OEMetadata-2.0.4",
"metadataLicense": {
"name": "CC0-1.0",
"title": "Creative Commons Zero v1.0 Universal",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/v2/v20/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1440,7 +1440,7 @@
"metadataVersion": {
"description": "Type and version number of the metadata.",
"examples": [
"OEMetadata-2.0.3"
"OEMetadata-2.0.4"
],
"type": [
"string",
Expand Down
2 changes: 1 addition & 1 deletion oemetadata/v2/v20/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
}
],
"metaMetadata": {
"metadataVersion": "OEMetadata-2.0.3",
"metadataVersion": "OEMetadata-2.0.4",
"metadataLicense": {
"name": "CC0-1.0",
"title": "Creative Commons Zero v1.0 Universal",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ requires = ["flit_core >=3.8.0,<4"]

[project]
name = "oemetadata"
version = "2.0.3"
version = "2.0.4"
authors = [
{name = "Ludwig Hülk", email = "datenzentrum@rl-institut.de"}]
description = "Open Energy Metadata (OEMetadata) - The energy metadata standard"
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading