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/1.3.0 #853

Closed
wants to merge 17 commits into from
Closed
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
# Project configuration
# ===========================================================================

PROJECT(antaresXpansion VERSION 1.2.2)
set(ANTARES_XPANSION_RC 0)
PROJECT(antaresXpansion VERSION 1.3.0)
set(ANTARES_XPANSION_RC 5)

# ===========================================================================
# Default parameters
Expand Down
2 changes: 1 addition & 1 deletion antares-version.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"antares_version": "8.8.3",
"antares_version_executable": "8.8",
"antares_xpansion_version": "1.2.2",
"antares_xpansion_version": "1.3.0",
"antares_deps_version": "2.0.7",
"minizip_ng_version": "3.0.6"
}
14 changes: 14 additions & 0 deletions docs/changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
Antares-Xpansion changelog
=================

v1.3.0 (06/2024)
--------------------------------------------------------

### Features

Embedding Mpi in Windows
Allow sensitivity study to run unzipped study
First Implementation of Benders Outer Loop
### Bug Fixes

Duplicate Xpress loading messages
remove whitespace from Xpress path on Windows
fix truncated xpress path on linux

v1.2.2 (02/2024)
--------------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
sonar.projectName=antares-xpansion
sonar.projectKey=AntaresSimulatorTeam_antares-xpansion
sonar.organization=antaressimulatorteam
sonar.projectVersion=1.2.2
sonar.projectVersion=1.3.0

# =====================================================
# Properties that will be shared amongst all modules
Expand Down
3 changes: 3 additions & 0 deletions src/cpp/multisolver_interface/environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <mutex>
#include <sstream>
#include <string>

namespace LoadXpress {

#define STRINGIFY2(X) #X
Expand Down Expand Up @@ -229,6 +230,8 @@ std::string XpressLoader::GetXpressVarFromEnvironmentVariables(
// Get the value of the LIB environment variable.
getenv_s(&requiredSize, xpress_home_from_env.data(), requiredSize,
XPRESS_var);
xpress_home_from_env = xpress_home_from_env.substr(0, requiredSize - 1);

} else {
if (verbose) {
msg.str("");
Expand Down
2 changes: 1 addition & 1 deletion vcpkg
Submodule vcpkg updated 2558 files
4 changes: 2 additions & 2 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "antares-xpansion",
"version-string": "1.2.2",
"builtin-baseline": "9484a57dd560b89f0a583be08af6753611c57fd5",
"version-string": "1.3.0",
"builtin-baseline": "943c5ef1c8f6b5e6ced092b242c8299caae2ff01",
"dependencies": [
"jsoncpp",
"gtest",
Expand Down
Loading