Skip to content

Commit b111bde

Browse files
committed
prepare for release
1 parent f5d8c33 commit b111bde

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

CMakeLists.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ if(POLICY CMP0167)
77
cmake_policy(SET CMP0167 NEW)
88
endif()
99

10-
project(dtlmod VERSION 0.1 DESCRIPTION "Data Transport Layer Module")
10+
project(dtlmod VERSION 0.2 DESCRIPTION "Data Transport Layer Module")
1111

1212
include(GNUInstallDirs)
1313
find_package(Boost 1.48)
14-
find_package(SimGrid 4.0.1 REQUIRED)
14+
find_package(SimGrid 4.1 REQUIRED)
1515
find_package(FSMod 0.3.1 REQUIRED)
1616
find_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
3030
set(DTLMOD_VERSION_MAJOR "0")
31-
set(DTLMOD_VERSION_MINOR "1")
31+
set(DTLMOD_VERSION_MINOR "2")
3232
set(DTLMOD_VERSION_PATCH "0")
3333
set(DTLMOD_VERSION_EXTRA "dev")
3434

@@ -174,7 +174,7 @@ set (CONFIG_FILES
174174
add_library(dtlmod SHARED ${SOURCE_FILES})
175175

176176
set_target_properties(dtlmod PROPERTIES
177-
SOVERSION 0.1
177+
SOVERSION 0.2
178178
LINKER_LANGUAGE CXX
179179
PUBLIC_HEADER "${HEADER_FILES}")
180180

ChangeLog

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
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

1720
First Release
1821

doc/source/New_project.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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(

doc/source/conf.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
# -- Project information -----------------------------------------------------
1919

20-
version = u'0.1.0'
20+
version = u'0.2.0'
2121
project = u'DTLMod'
2222
copyright = u'2022-2025, The SWAT Team'
2323
author = u'The SWAT Team'
@@ -101,6 +101,3 @@
101101
# Setup the breath extension
102102
breathe_projects = {'dtlmod': '../build/xml'}
103103
breathe_default_project = "dtlmod"
104-
105-
version = '0.1'
106-
release = '0.1'

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "dtlmod"
7-
version = "0.1.0-beta"
7+
version = "0.2"
88
description = "A versatile simulated data transport layer SimGrid module"
99
authors = [
1010
{ name = "The SWAT Team", email = "[email protected]" }

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
sonar.organization=simgrid
55
sonar.projectKey=simgrid_dtlmod
66
sonar.projectName=DTLMOD
7-
sonar.projectVersion=0.1
7+
sonar.projectVersion=0.2
88

99
sonar.links.scm=https://github.com/simgrid/DTLMod/
1010
# Comma-separated paths to directories with sources (required)

0 commit comments

Comments
 (0)