Skip to content

Commit 7250945

Browse files
Bump version to 2.3.3 and fix test workflow
- Update version to 2.3.3 - Fix ROOT integration test to match actual larcv usage pattern - Update CHANGELOG for 2.3.3 release
1 parent 666db0e commit 7250945

3 files changed

Lines changed: 16 additions & 11 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ jobs:
4545
print('Version:', larcv.__version__)
4646
"
4747
48-
- name: Run ROOT tests
48+
- name: Verify ROOT integration
4949
run: |
5050
docker run --rm larcv2:test python -c "
51+
import larcv
5152
import ROOT
52-
from ROOT import larcv
53-
print('ROOT and LArCV loaded successfully!')
5453
print('ROOT version:', ROOT.gROOT.GetVersion())
54+
print('LArCV and ROOT integration verified!')
5555
"

CHANGELOG.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [2.3.3] - 2026-04-02
11+
1012
### Added
1113
- Docker containerization with automatic builds via GitHub Actions
1214
- Container images published to ghcr.io/deeplearnphysics/larcv2
@@ -15,14 +17,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- Comprehensive Docker documentation in README
1618

1719
### Changed
18-
- Modernized Dockerfile with ROOT 6.30.06 and Ubuntu 22.04
20+
- Modernized Dockerfile with ROOT 6.34.00 and Ubuntu 24.04 LTS
1921
- Updated build system to support containerized builds
22+
- Migrated from Travis CI to GitHub Actions for CI/CD
23+
- Updated badges in README with modern alternatives
2024

21-
## [2.3.0] - 2026-04-02
25+
### Removed
26+
- Deprecated Travis CI integration
27+
- Old Singularity Hub references
2228

23-
### Added
24-
- Initial version tracking
25-
- Container infrastructure setup
29+
## [2.3.2] - Previous release
2630

27-
[Unreleased]: https://github.com/DeepLearnPhysics/larcv2/compare/v2.3.0...HEAD
28-
[2.3.0]: https://github.com/DeepLearnPhysics/larcv2/releases/tag/v2.3.0
31+
[Unreleased]: https://github.com/DeepLearnPhysics/larcv2/compare/v2.3.3...HEAD
32+
[2.3.3]: https://github.com/DeepLearnPhysics/larcv2/releases/tag/v2.3.3
33+
[2.3.2]: https://github.com/DeepLearnPhysics/larcv2/releases/tag/v2.3.2

python/larcv/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""This file contains the version number for larcv.
22
It is used by setup.py and by the package itself."""
33

4-
__version__ = "2.3.2"
4+
__version__ = "2.3.3"

0 commit comments

Comments
 (0)