Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.22.1 #2238

Merged
merged 2 commits into from
Sep 26, 2024
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
12 changes: 12 additions & 0 deletions Hopsan-release-notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,17 @@
******************************
Version History
******************************
2.22.1 (2024-09-26)
----- Bug Fixes -----
- HopsanGUI
- Fixed problem with workspace size
- Animation mode now keeps worksapce size
- FMIWrapper components now appear at the center of the model
- "adco" command in terminal will now add components on correct place
- Fixed minor problems with splash screen
- Model can no longer be edited during simulation

---------------------------------------------------------------------------------------------------------------------------------------------
2.22.0 (2024-05-27)

----- Bug Fixes -----
Expand Down Expand Up @@ -68,6 +79,7 @@
- Timestep can now be controlled in exported FMUs
- Recompilation of a library can now be prevented with XML flag

--------------------------------------------------------------------------------------------------------------------------------------------
2.21.1 (2023-06-20)

----- Bug Fixes -----
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.22.0"
#define HOPSANBASEVERSION "2.22.1"
#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.22.0
devversion=2.22.1

# Pbuilder dists and archs
debianDistArchArray=( bookworm:amd64:bookworm
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.22.0'
gBaseVersion = '2.22.1'
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.22.0
baseversion=2.22.1
releaserevision=20190827.1035 # TODO use getGitInfoScript
fullversionname=${baseversion}.${releaserevision}
doDevRelease=true
Expand Down
Loading