File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 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 `
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments