From 0525c5087ff493c4cdf9966e8fff99f0fa45382c Mon Sep 17 00:00:00 2001 From: Martin Otter Date: Sun, 4 Jun 2023 13:13:59 +0200 Subject: [PATCH] Added release notes --- docs/src/index.md | 14 ++++++++++++++ src/Modia.jl | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/docs/src/index.md b/docs/src/index.md index 705e3e1..a2c8445 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -42,6 +42,20 @@ functionalities of these packages. ## Release Notes +### Version 0.12.0 + +- Improved documentation of built-in component functions. + +**Non-backwards** compatible changes + +- Renamed struct `SimulationModel` to `InstantiatedModel`. +- Renamed function `get_scalar_x_segmented_value` to `copy_scalar_x_segmented_value_from_state` +- Renamed function `get_SVector3_x_segmented_value` to `copy_SVector3_x_segmented_value_from_state` +- Renamed function `get_Vector_x_segmented_value!` to `copy_Vector_x_segmented_value_from_state` +- Renamed function `add_der_x_segmented_value!` to `copy_der_x_segmented_value_to_state` +- Renamed function `add_w_segmented_value!` to `copy_w_segmented_value_to_result` + + ### Version 0.11.0 - Require ModiaBase 0.11.1 diff --git a/src/Modia.jl b/src/Modia.jl index 4cb8b36..9b637ba 100644 --- a/src/Modia.jl +++ b/src/Modia.jl @@ -9,7 +9,7 @@ Main module of Modia. module Modia const path = dirname(dirname(@__FILE__)) # Absolute path of package directory -const Version = "0.11.0" +const Version = "0.12.0" const Date = "2023-06-04" const modelsPath = joinpath(Modia.path, "models")