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
19 changes: 19 additions & 0 deletions Hopsan-release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,25 @@
Version History
******************************

---------------------------------------------------------------------------------------------------------------------------------------------
2.24.0 (2026-06-10)

----- New Features -----
Experimental support for the SSP standard

----- Enhancements -----
Improvements to DCP support
Added TLM interface components for DCP cosimulation

----- Bugs -----
Trigger simulation code from getReal during intialization in exported FMUs
Fix error when setting parameters in subsystems from HCOM
Removed accidentally added code to MechanicInterfaceC
Fix crash when reinstantiating FMUWrapper components

----- General -----
- General improvements to CMake and thirdparty libs

---------------------------------------------------------------------------------------------------------------------------------------------
2.23.1 (2025-08-18)

Expand Down
2 changes: 1 addition & 1 deletion HopsanCore/include/HopsanCoreVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// not the latest revision that you get when compiling the external component.
#include "HopsanCoreGitVersion.h"

#define HOPSANBASEVERSION "2.23.1"
#define HOPSANBASEVERSION "2.24.0"
#define HOPSANCOREVERSION HOPSANBASEVERSION "." TO_STR(HOPSANCORE_COMMIT_TIMESTAMP)
#define HOPSANCOREMODELFILEVERSION "0.4"

Expand Down
2 changes: 1 addition & 1 deletion makeDebRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -u
hopsancode_root=$(pwd)
pbuilderWorkDir=/var/tmp/deb_hopsan/pbuilder
name=hopsan
devversion=2.23.1
devversion=2.24.0

# Pbuilder dists and archs
debianDistArchArray=( trixie:amd64:trixie
Expand Down
2 changes: 1 addition & 1 deletion makeWindowsRelease.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# -------------------- Setup Start --------------------
# Version numbers
gBaseVersion = '2.23.1'
gBaseVersion = '2.24.0'
gReleaseRevision = ''
gFullVersion = gBaseVersion
gReleaseFileVersionName = gBaseVersion
Expand Down
2 changes: 1 addition & 1 deletion packaging/mac-app/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

buildRoot="packaging/mac-app/"
name="hopsan"
baseversion=2.23.1
baseversion=2.24.0
releaserevision=20190827.1035 # TODO use getGitInfoScript
fullversionname=${baseversion}.${releaserevision}
doDevRelease=true
Expand Down
Loading