Skip to content

Commit 0b46435

Browse files
aivanoufacebook-github-bot
authored andcommitted
0.1.1 Release (#355)
Summary: Pull Request resolved: #355 0.1.1 Release Reviewed By: d4l3k Differential Revision: D32433749 fbshipit-source-id: 36585b21fc26b35a96a2ef058776a2340372bce1
1 parent 0f81544 commit 0b46435

File tree

3 files changed

+27
-2
lines changed

3 files changed

+27
-2
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# CHANGELOG
22

3+
## torchx-0.1.1
4+
5+
* Milestone: https://github.com/pytorch/torchx/milestone/2
6+
7+
* `torchx.schedulers`
8+
* #287, #286 - Implement `local_docker` scheduler using docker client lib
9+
10+
* Docs
11+
* #336 - Add context/intro to each docs page
12+
* Minor document corrections
13+
14+
* `torchx`
15+
* #267 - Make torchx.version.TORCHX_IMAGE follow the same semantics as __version__
16+
* #299 - Use base docker image `pytorch/pytorch:1.10.0-cuda11.3-cudnn8-runtime`
17+
18+
* `torchx.specs`
19+
* #301 - Add `metadata` field to `torchx.specs.Role` dataclass
20+
* #302 - Deprecate RunConfig in favor of raw `Dict[str, ConfigValue]`
21+
22+
* `torchx.cli`
23+
* #316 - Implement `torchx builtins --print` that prints the source code of the component
24+
25+
* `torchx.runner`
26+
* #331 - Split run_component into run_component and dryrun_component
27+
328
## torchx-0.1.0
429

530
* `torchx.schedulers`

torchx/schedulers/test/docker_scheduler_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_submit_dryrun(self) -> None:
8282
"torchx.pytorch.org/app-id": "app_name_42",
8383
"torchx.pytorch.org/replica-id": "0",
8484
"torchx.pytorch.org/role-name": "trainer",
85-
"torchx.pytorch.org/version": "0.1.1dev0",
85+
"torchx.pytorch.org/version": "0.1.1",
8686
},
8787
"mem_limit": "3000m",
8888
"name": "app_name_42-trainer-0",

torchx/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# 0.1.0bN # Beta release
1515
# 0.1.0rcN # Release Candidate
1616
# 0.1.0 # Final release
17-
__version__ = "0.1.1dev0"
17+
__version__ = "0.1.1"
1818

1919
# Use the github container registry images corresponding to the current package
2020
# version.

0 commit comments

Comments
 (0)