File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
experimental/v1/_src/training Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88## [ Unreleased]
99
10+ ## [ 0.11.28] - 2025-11-06
11+
1012### Added
1113
14+ - #v1 ` Checkpointer.wait ` method.
1215- Added ` register_pathways_handlers ` to ` ocp.type_handlers `
1316
1417## [ 0.11.27] - 2025-11-04
Original file line number Diff line number Diff line change @@ -518,6 +518,10 @@ def is_saving_in_progress(self) -> bool:
518518 """Whether a checkpoint is currently being saved in the background."""
519519 return self ._manager .is_saving_in_progress ()
520520
521+ def wait (self ):
522+ """Waits for any outstanding async operations to complete."""
523+ self ._manager .wait_until_finished ()
524+
521525 def close (self ):
522526 """Ensures any outstanding async operations are completed before closing."""
523527 self ._manager .close ()
Original file line number Diff line number Diff line change 1717# A new PyPI release will be pushed everytime `__version__` is increased.
1818# Also modify version and date in CHANGELOG.
1919# LINT.IfChange
20- __version__ = '0.11.27 '
20+ __version__ = '0.11.28 '
2121# LINT.ThenChange(//depot//orbax/checkpoint/CHANGELOG.md)
2222
2323
You can’t perform that action at this time.
0 commit comments