Skip to content

Commit 08fad5d

Browse files
committed
Update version numbers to 2.2.6
1 parent 1d5887b commit 08fad5d

10 files changed

Lines changed: 13 additions & 14 deletions

File tree

CHANGELOG

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
v2.2.5 (work-in-progress)
1+
v2.2.6 2026-01-06
22
* Increase test timeout threshold by a factor of two, to avoid timeouts in
33
github Windows CI tests.
44
* Reduce interim disk usage when calling mcpl_merge_outfiles_mpi by
55
removing per-thread files before attempting output file compression
66
(GitHub issue #119).
77
* Bump end-year in copyright statements to 2026.
8-
* ...
98

109
v2.2.4 2025-10-20
1110
* Maintenance release to rerender various deployments.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.5
1+
2.2.6

mcpl_core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ endif()
5151

5252
#Setup project:
5353

54-
project( MCPL VERSION 2.2.5
54+
project( MCPL VERSION 2.2.6
5555
LANGUAGES C
5656
DESCRIPTION "Monte Carlo Particle Lists"
5757
HOMEPAGE_URL "https://github.com/mctools/mcpl"

mcpl_core/empty_pypkg/pyproject.toml

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

3333
[project]
3434
name = "mcpl-core"
35-
version = "2.2.5"
35+
version = "2.2.6"
3636
requires-python = ">=3.8"
3737
readme = "README.md"
3838
license = {text = "Apache-2.0"}

mcpl_core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
[project]
2323
name = "mcpl-core"
24-
version = "2.2.5"
24+
version = "2.2.6"
2525
requires-python = ">=3.8"
2626
readme = "README.md"
2727
license = {text = "Apache-2.0"}

mcpl_extra/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ endif()
5151

5252
#Setup project:
5353

54-
project( MCPLExtra VERSION 2.2.5
54+
project( MCPLExtra VERSION 2.2.6
5555
LANGUAGES C
5656
DESCRIPTION "Monte Carlo Particle Lists"
5757
HOMEPAGE_URL "https://github.com/mctools/mcpl"

mcpl_extra/pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121

2222
[project]
2323
name = "mcpl-extra"
24-
version = "2.2.5"
25-
dependencies = [ 'mcpl-core==2.2.5' ]
24+
version = "2.2.6"
25+
dependencies = [ 'mcpl-core==2.2.6' ]
2626
requires-python = ">=3.8"
2727
readme = "README.md"
2828
license = {text = "Apache-2.0"}
@@ -46,7 +46,7 @@ phits2mcpl = "_mcpl_extra.cli:cli_wrapper_phits2mcpl"
4646
mcpl2phits = "_mcpl_extra.cli:cli_wrapper_mcpl2phits"
4747

4848
[build-system]
49-
requires = ["scikit-build-core>=0.11.0","mcpl-core==2.2.5"]
49+
requires = ["scikit-build-core>=0.11.0","mcpl-core==2.2.6"]
5050
build-backend = "scikit_build_core.build"
5151

5252
[tool.scikit-build]

mcpl_metapkg/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ build-backend = "setuptools.build_meta"
2525

2626
[project]
2727
name = "mcpl"
28-
version = "2.2.5"
29-
dependencies = [ 'mcpl-core==2.2.5', 'mcpl-python==2.2.5' ]
28+
version = "2.2.6"
29+
dependencies = [ 'mcpl-core==2.2.6', 'mcpl-python==2.2.6' ]
3030
requires-python = ">=3.8"
3131
readme = "README.md"
3232
license = {text = "Apache-2.0"}

mcpl_python/src/mcpl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
'is_valid_stat_sum_key'
6161
]
6262

63-
__version__ = '2.2.5'
63+
__version__ = '2.2.6'
6464

6565
from .mcpl import ( MCPLFile,
6666
MCPLParticle,

mcpl_python/src/mcpl/mcpl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
__license__ = "Apache 2.0, http://www.apache.org/licenses/LICENSE-2.0"
5151
__copyright__ = 'Copyright 2015-2026'
52-
__version__ = '2.2.5'
52+
__version__ = '2.2.6'
5353
__status__ = 'Production'
5454
__author__ = 'Thomas Kittelmann'
5555
__maintainer__ = 'Thomas Kittelmann'

0 commit comments

Comments
 (0)