Skip to content

Commit

Permalink
Release v0.6.0 (#346)
Browse files Browse the repository at this point in the history
* Release v0.6.0

Signed-off-by: Piotr Pawłowski <[email protected]>

---------

Signed-off-by: Piotr Pawłowski <[email protected]>
  • Loading branch information
pawloch00 authored Jan 27, 2025
1 parent ac7f3e8 commit e52a5f4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Build distribution
runs-on: ubuntu-latest
# to build only on push to tags or on custom dispatched workflows
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
if: github.event_name == 'workflow_dispatch' || startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
name = "xpk"
dynamic = ["version"]
authors = [
{ name="Cloud TPU Team", email="cloud-tpu-eng@google.com" },
{ name="XPK team", email="xpk-code-reviewers@google.com" },
]
description = "xpk helps Cloud developers to orchestrate training jobs on accelerators on GKE."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/xpk/commands/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

from ..core.commands import run_command_for_value

XPK_VERSION = 'v0.4.1'
XPK_VERSION = 'v0.6.0'

from ..utils.console import xpk_exit, xpk_print

Expand Down
2 changes: 1 addition & 1 deletion src/xpk/core/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
default_docker_image = 'python:3.10'
default_script_dir = os.getcwd()
# This is the version for XPK PyPI package
__version__ = '0.5.0'
__version__ = '0.6.0'
xpk_current_version = __version__

h100_device_type = 'h100-80gb-8'
Expand Down

0 comments on commit e52a5f4

Please sign in to comment.