File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ if(POLICY CMP0167)
77 cmake_policy (SET CMP0167 NEW)
88endif ()
99
10- project (dtlmod VERSION 0.1 DESCRIPTION "Data Transport Layer Module" )
10+ project (dtlmod VERSION 0.2 DESCRIPTION "Data Transport Layer Module" )
1111
1212include (GNUInstallDirs)
1313find_package (Boost 1.48)
14- find_package (SimGrid 4.0. 1 REQUIRED)
14+ find_package (SimGrid 4.1 REQUIRED)
1515find_package (FSMod 0.3.1 REQUIRED)
1616find_package (nlohmann_json REQUIRED)
1717
@@ -28,7 +28,7 @@ set(CMAKE_CXX_FLAGS "-O3 -funroll-loops -fno-strict-aliasing -flto=auto")
2828
2929# build the version number
3030set (DTLMOD_VERSION_MAJOR "0" )
31- set (DTLMOD_VERSION_MINOR "1 " )
31+ set (DTLMOD_VERSION_MINOR "2 " )
3232set (DTLMOD_VERSION_PATCH "0" )
3333set (DTLMOD_VERSION_EXTRA "dev" )
3434
@@ -174,7 +174,7 @@ set (CONFIG_FILES
174174add_library (dtlmod SHARED ${SOURCE_FILES} )
175175
176176set_target_properties (dtlmod PROPERTIES
177- SOVERSION 0.1
177+ SOVERSION 0.2
178178 LINKER_LANGUAGE CXX
179179 PUBLIC_HEADER "${HEADER_FILES} " )
180180
Original file line number Diff line number Diff line change 11----------------------------------------------------------------------------
22
3- DTLMod (0.2) unreleased. Target: fall 2025
3+ DTLMod (0.2) November 11, 2025
44
55 - New comprehensive documentation
66 - Full python bindings
77 - Improved code coverage
88 - Reduced technical debt
9+ - Fixed deadlocks in File engine
10+ - Update to SimGrid 4.1 and FSMod 0.4
911 - API:
1012 - Make metadata export configurable at stream level.
1113 - Have a simpler version of Engine::put() that automatically uses the
1214 local size of the Variable.
15+
1316----------------------------------------------------------------------------
1417
15- DTLMod (0.1) July 4. 2025
18+ DTLMod (0.1) July 4, 2025
1619
1720First Release
1821
Original file line number Diff line number Diff line change @@ -25,8 +25,8 @@ simulator from a given set of source files.
2525 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -O3 -funroll-loops -fno-strict-aliasing -flto=auto")
2626
2727 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/")
28- find_package(SimGrid 4.0. 1 REQUIRED)
29- find_package(FSMod 0.3.1 REQUIRED)
28+ find_package(SimGrid 4.1 REQUIRED)
29+ find_package(FSMod 0.4 REQUIRED)
3030 find_package(DTLMod REQUIRED)
3131
3232 include_directories(
Original file line number Diff line number Diff line change 1717
1818# -- Project information -----------------------------------------------------
1919
20- version = u'0.1 .0'
20+ version = u'0.2 .0'
2121project = u'DTLMod'
2222copyright = u'2022-2025, The SWAT Team'
2323author = u'The SWAT Team'
101101# Setup the breath extension
102102breathe_projects = {'dtlmod' : '../build/xml' }
103103breathe_default_project = "dtlmod"
104-
105- version = '0.1'
106- release = '0.1'
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " dtlmod"
7- version = " 0.1.0-beta "
7+ version = " 0.2 "
88description = " A versatile simulated data transport layer SimGrid module"
99authors = [
1010 {
name =
" The SWAT Team" ,
email =
" [email protected] " }
Original file line number Diff line number Diff line change 44sonar.organization =simgrid
55sonar.projectKey =simgrid_dtlmod
66sonar.projectName =DTLMOD
7- sonar.projectVersion =0.1
7+ sonar.projectVersion =0.2
88
99sonar.links.scm =https://github.com/simgrid/DTLMod/
1010# Comma-separated paths to directories with sources (required)
You can’t perform that action at this time.
0 commit comments