Skip to content

Commit

Permalink
chore(core): release wandb-core 0.17.0b8 (wandb#6890)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitryduev authored Jan 24, 2024
1 parent 3e785da commit 6345541
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.core.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.17.0b7
current_version = 0.17.0b8
commit = False
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<prekind>[a-z]+)(?P<pre>\d+))?(\.(?P<devkind>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ We're eager to hear your thoughts on `wandb-core`. Your feedback, especially bug

## Feature Support Status

Below is an overview of the feature support status in the `wandb-core` version `0.17.0b7`.
Below is an overview of the feature support status in the `wandb-core` version `0.17.0b8`.

Status legend:
- ✅: Available: The feature is relatively stable and ready for use.
Expand Down
2 changes: 1 addition & 1 deletion core/internal/version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

const Version = "0.17.0b7"
const Version = "0.17.0b8"

const MinServerVersion = "0.40.0"
2 changes: 1 addition & 1 deletion core/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# wandb-core versioning
# ---------------------
CORE_VERSION = "0.17.0b7"
CORE_VERSION = "0.17.0b8"


PACKAGE: str = "wandb_core"
Expand Down
2 changes: 1 addition & 1 deletion core/wandb_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from pathlib import Path

__version__ = "0.17.0b7"
__version__ = "0.17.0b8"


def get_core_path() -> Path:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

import nox

CORE_VERSION = "0.17.0b7"
CORE_VERSION = "0.17.0b8"


@nox.session(python=False, name="build-core")
Expand Down
2 changes: 1 addition & 1 deletion wandb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
For reference documentation, see https://docs.wandb.com/ref/python.
"""
__version__ = "0.16.3.dev1"
_minimum_core_version = "0.17.0b7"
_minimum_core_version = "0.17.0b8"

# Used with pypi checks and other messages related to pip
_wandb_module = "wandb"
Expand Down

0 comments on commit 6345541

Please sign in to comment.