File tree 3 files changed +27
-2
lines changed
3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1
1
# CHANGELOG
2
2
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
+
3
28
## torchx-0.1.0
4
29
5
30
* ` torchx.schedulers `
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ def test_submit_dryrun(self) -> None:
82
82
"torchx.pytorch.org/app-id" : "app_name_42" ,
83
83
"torchx.pytorch.org/replica-id" : "0" ,
84
84
"torchx.pytorch.org/role-name" : "trainer" ,
85
- "torchx.pytorch.org/version" : "0.1.1dev0 " ,
85
+ "torchx.pytorch.org/version" : "0.1.1 " ,
86
86
},
87
87
"mem_limit" : "3000m" ,
88
88
"name" : "app_name_42-trainer-0" ,
Original file line number Diff line number Diff line change 14
14
# 0.1.0bN # Beta release
15
15
# 0.1.0rcN # Release Candidate
16
16
# 0.1.0 # Final release
17
- __version__ = "0.1.1dev0 "
17
+ __version__ = "0.1.1 "
18
18
19
19
# Use the github container registry images corresponding to the current package
20
20
# version.
You can’t perform that action at this time.
0 commit comments