Skip to content

Commit df6f790

Browse files
authored
chore(sdk): bump to 0.14.2.dev1 (wandb#5299)
1 parent eb0ebe4 commit df6f790

File tree

5 files changed

+43
-8
lines changed

5 files changed

+43
-8
lines changed

CHANGELOG.md

+35
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## 0.14.1 (April 5, 2023)
2+
3+
### :magic_wand: Enhancements
4+
* feat(artifacts): improve run.log_artifact() with default type and path references by @moredatarequired in https://github.com/wandb/wandb/pull/5131
5+
* feat(artifacts): add opt-in support for async artifact upload by @speezepearson in https://github.com/wandb/wandb/pull/4864
6+
* perf(sdk): update summary for changed keys only by @dmitryduev in https://github.com/wandb/wandb/pull/5150
7+
* feat(sdk): use a persistent session object for GraphQL requests by @moredatarequired in https://github.com/wandb/wandb/pull/5075
8+
* feat(sdk): allow setting of extra headers for the gql client by @dmitryduev in https://github.com/wandb/wandb/pull/5237
9+
* feat(sdk): allow filtering metrics based on OpenMetrics endpoints by @dmitryduev in https://github.com/wandb/wandb/pull/5282
10+
### :hammer: Fixes
11+
* fix(artifacts): more informative message when failing to create staging artifact directory by @moredatarequired in https://github.com/wandb/wandb/pull/5067
12+
* fix(launch): set default value for Kubernetes backoffLimit to 0 by @KyleGoyette in https://github.com/wandb/wandb/pull/5072
13+
* fix(sdk): remove default sorting when dumping config into a yaml file by @kptkin in https://github.com/wandb/wandb/pull/5127
14+
* fix(media): fix encoding for html types on windows by @kptkin in https://github.com/wandb/wandb/pull/5180
15+
* fix(sdk): clean up auto resume state when initializing a new run by @kptkin in https://github.com/wandb/wandb/pull/5184
16+
* fix(sdk): harden `wandb.init()` error handling for backend errors by @kptkin in https://github.com/wandb/wandb/pull/5023
17+
* fix(sdk): fix system monitor shutdown logic by @dmitryduev in https://github.com/wandb/wandb/pull/5227
18+
* fix(launch): allow users to specify pinned versions in requirements.txt by @KyleGoyette in https://github.com/wandb/wandb/pull/5226
19+
* fix(sdk): make `wandb.log()` handle empty string values properly by @dannygoldstein in https://github.com/wandb/wandb/pull/5275
20+
* fix(sdk): raise exception when accessing methods and attributes of a finished run by @kptkin in https://github.com/wandb/wandb/pull/5013
21+
### :books: Docs
22+
* docs(launch): add documentation for launch by @iveksl2 in https://github.com/wandb/wandb/pull/4596
23+
* docs(sdk): add documentation for Object3D media type by @ssisk in https://github.com/wandb/wandb/pull/4810
24+
* docs(sdk): remove duplicate docstring in keras integration by @Gladiator07 in https://github.com/wandb/wandb/pull/5289
25+
* docs(artifacts): convert docstrings to Google convention by @moredatarequired in https://github.com/wandb/wandb/pull/5276
26+
### :nail_care: Cleanup
27+
* refactor(artifacts): use 'secrets' module instead of custom random token generator by @moredatarequired in https://github.com/wandb/wandb/pull/5050
28+
* refactor(artifacts): move _manifest_json_from_proto to sender.py by @moredatarequired in https://github.com/wandb/wandb/pull/5178
29+
30+
## New Contributors
31+
* @iveksl2 made their first contribution in https://github.com/wandb/wandb/pull/4596
32+
* @Gladiator07 made their first contribution in https://github.com/wandb/wandb/pull/5289
33+
34+
**Full Changelog**: https://github.com/wandb/wandb/compare/v0.14.0...v0.14.1
35+
136
## 0.14.0 (March 14, 2023)
237

338
### :magic_wand: Enhancements

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ skip_gitignore = "True"
2828
[tool.commitizen]
2929
name = "cz_conventional_commits"
3030
major_version_zero = true
31-
version = "0.14.1.dev1"
31+
version = "0.14.2.dev1"
3232
version_files = ["setup.py", "setup.cfg", "wandb/__init__.py"]
3333
tag_format = "v$major.$minor.$patch$prerelease"
3434
changelog_incremental = true

setup.cfg

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[bumpversion]
2-
current_version = 0.14.1.dev1
2+
current_version = 0.14.2.dev1
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<prekind>[a-z]+)(?P<pre>\d+))?(\.(?P<devkind>[a-z]+)(?P<dev>\d+))?
6-
serialize =
6+
serialize =
77
{major}.{minor}.{patch}{prekind}{pre}.{devkind}{dev}
88
{major}.{minor}.{patch}.{devkind}{dev}
99
{major}.{minor}.{patch}{prekind}{pre}
@@ -14,7 +14,7 @@ first_value = 1
1414

1515
[bumpversion:part:prekind]
1616
optional_value = _
17-
values =
17+
values =
1818
_
1919
rc
2020
_
@@ -24,7 +24,7 @@ first_value = 1
2424

2525
[bumpversion:part:devkind]
2626
optional_value = _
27-
values =
27+
values =
2828
_
2929
dev
3030
_
@@ -42,7 +42,7 @@ search = version = "{current_version}"
4242
replace = version = "{new_version}"
4343

4444
[tool:pytest]
45-
norecursedirs =
45+
norecursedirs =
4646
vendor
4747
wandb/vendor
4848
open_files_ignore = "*.ttf"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555

5656
setup(
5757
name="wandb",
58-
version="0.14.1.dev1",
58+
version="0.14.2.dev1",
5959
description="A CLI and library for interacting with the Weights and Biases API.",
6060
long_description=readme,
6161
long_description_content_type="text/markdown",

wandb/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
For reference documentation, see https://docs.wandb.com/ref/python.
1313
"""
14-
__version__ = "0.14.1.dev1"
14+
__version__ = "0.14.2.dev1"
1515

1616
# Used with pypi checks and other messages related to pip
1717
_wandb_module = "wandb"

0 commit comments

Comments
 (0)