Skip to content

Commit

Permalink
chore(sdk): update changelog in main and bump version to 0.14.3.dev1 (w…
Browse files Browse the repository at this point in the history
  • Loading branch information
kptkin authored Apr 7, 2023
1 parent 11e84f8 commit a1621fc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.14.2 (April 7, 2023)

### :hammer: Fixes
* fix(sdk): fix `wandb sync` regression by @kptkin in https://github.com/wandb/wandb/pull/5306

**Full Changelog**: https://github.com/wandb/wandb/compare/v0.14.1...v0.14.2

## 0.14.1 (April 5, 2023)

### :magic_wand: Enhancements
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ skip_gitignore = "True"
[tool.commitizen]
name = "cz_conventional_commits"
major_version_zero = true
version = "0.14.2.dev1"
version = "0.14.3.dev1"
version_files = ["setup.py", "setup.cfg", "wandb/__init__.py"]
tag_format = "v$major.$minor.$patch$prerelease"
changelog_incremental = true
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.14.2.dev1
current_version = 0.14.3.dev1
commit = True
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@

setup(
name="wandb",
version="0.14.2.dev1",
version="0.14.3.dev1",
description="A CLI and library for interacting with the Weights and Biases API.",
long_description=readme,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion wandb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
For reference documentation, see https://docs.wandb.com/ref/python.
"""
__version__ = "0.14.2.dev1"
__version__ = "0.14.3.dev1"

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

0 comments on commit a1621fc

Please sign in to comment.