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
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release notes

## Version 0.6.2 (2025-12-18)

### Bugfix

* Fix missing header type for type `Int` used in the exported function `save_results` (e.g., for the variable `:discharge_segment` in `EnergyModelsRenewableProducers`).

## Version 0.6.1 (2025-12-17)

### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "EnergyModelsGUI"
uuid = "737a7361-d3b7-40e9-b1ac-59bee4c5ea2d"
version = "0.6.1"
version = "0.6.2"
authors = ["Jon Vegard Venås <JonVegard.Venas@sintef.no>", "Dimitri Pinel <Dimitri.Pinel@sintef.no>", "Magnus Askeland <Magnus.Askeland@sintef.no>", "Shweta Tiwari <Shweta.Tiwari@sintef.no>"]

[deps]
Expand Down
1 change: 1 addition & 0 deletions src/utils_gen/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,7 @@ _type_to_header(::Type{<:TS.TimePeriod}) = :t
_type_to_header(::Type{<:TS.TimeStructure}) = :t
_type_to_header(::Type{<:Resource}) = :res
_type_to_header(::Type{<:AbstractElement}) = :element
_type_to_header(::Type{<:Int}) = :segment

"""
save_results(model::Model; directory=joinpath(pwd(),"csv_files"))
Expand Down
Loading