Skip to content

Commit 8386856

Browse files
authored
Updating version (#62)
1 parent d8dd177 commit 8386856

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,14 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
2323

2424
## [Unreleased]
2525

26+
## [0.1.0] - 2025-04-07
27+
* Bump the JAX requirement to 0.5.1
28+
* Introduce `pathwaysutils.initialize()` to remove relying on side-effects from `import pathwaysutils`. by @copybara-service in https://github.com/AI-Hypercomputer/pathways-utils/pull/47
29+
* Add a test for proxy backend registration by @copybara-service in https://github.com/AI-Hypercomputer/pathways-utils/pull/55
30+
* Adding debugging utilities by @copybara-service in https://github.com/AI-Hypercomputer/pathways-utils/pull/57
31+
* Adding an elastic manager and reshard modules by @copybara-service in https://github.com/AI-Hypercomputer/pathways-utils/pull/58
32+
* Update README for Colocated Python Sidecar. by @copybara-service in https://github.com/AI-Hypercomputer/pathways-utils/pull/60
33+
2634
## [0.0.8] - 2024-02-12
2735
* Disabled JAX's compilation cache
2836
* Updated Orbax handler to use bulk APIs
@@ -39,5 +47,5 @@ To release a new version (e.g. from `1.0.0` -> `2.0.0`):
3947
* Persistence enabled
4048
* General argument type fixes
4149

42-
[Unreleased]: https://github.com/AI-Hypercomputer/pathways-utils/compare/v0.0.8...HEAD
50+
[Unreleased]: https://github.com/AI-Hypercomputer/pathways-utils/compare/v0.1.0...HEAD
4351

pathwaysutils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
_logger = logging.getLogger(__name__)
2929
_initialization_count = 0
3030
# When changing this, also update the CHANGELOG.md.
31-
__version__ = "v0.0.8"
31+
__version__ = "v0.1.0"
3232

3333

3434
# This is a brittle implementation since the platforms value is not necessarily

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
jax[cpu]>=0.4.26
1+
jax[cpu]>=0.5.1
22
absl-py
33
orbax-checkpoint
44
uvicorn

0 commit comments

Comments
 (0)