Skip to content

Commit 9b0fc45

Browse files
committed
Update version to 2.3.1
1 parent 79d08bf commit 9b0fc45

File tree

5 files changed

+28787
-3
lines changed

5 files changed

+28787
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ project(OpenStudioMeta)
44

55
set(CMAKE_VERSION_MAJOR 2)
66
set(CMAKE_VERSION_MINOR 3)
7-
set(CMAKE_VERSION_PATCH 0)
7+
set(CMAKE_VERSION_PATCH 1)
88

99
set(CMAKE_VERSION_BUILD "Unknown" CACHE STRING "Build number")
1010
find_package(Git)

openstudiocore/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if(CCACHE_PROGRAM)
99
endif()
1010

1111

12-
project(OpenStudio VERSION 2.3.0)
12+
project(OpenStudio VERSION 2.3.1)
1313

1414
include(ExternalProject)
1515
include(CPackComponent)

openstudiocore/resources/model/OpenStudio.idd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!IDD_Version 2.3.0
1+
!IDD_Version 2.3.1
22
! *****************************************************************************
33
! This file is the Input Data Dictionary (IDD) for OpenStudio Model.
44
!

openstudiocore/src/osversion/VersionTranslator.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ VersionTranslator::VersionTranslator()
119119
m_updateMethods[VersionString("2.1.1")] = &VersionTranslator::update_2_1_0_to_2_1_1;
120120
m_updateMethods[VersionString("2.1.2")] = &VersionTranslator::update_2_1_1_to_2_1_2;
121121
m_updateMethods[VersionString("2.3.0")] = &VersionTranslator::update_2_1_2_to_2_3_0;
122+
m_updateMethods[VersionString("2.3.1")] = &VersionTranslator::defaultUpdate;
122123

123124
// List of previous versions that may be updated to this one.
124125
// - To increment the translator, add an entry for the version just released (branched for
@@ -250,6 +251,7 @@ VersionTranslator::VersionTranslator()
250251
m_startVersions.push_back(VersionString("2.2.0"));
251252
m_startVersions.push_back(VersionString("2.2.1"));
252253
m_startVersions.push_back(VersionString("2.2.2"));
254+
m_startVersions.push_back(VersionString("2.3.0"));
253255
}
254256

255257
boost::optional<model::Model> VersionTranslator::loadModel(const openstudio::path& pathToOldOsm,

0 commit comments

Comments
 (0)