Skip to content

Commit

Permalink
0.1.1 Release (#355)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #355

0.1.1 Release

Reviewed By: d4l3k

Differential Revision: D32433749

fbshipit-source-id: 36585b21fc26b35a96a2ef058776a2340372bce1
  • Loading branch information
aivanou authored and facebook-github-bot committed Nov 18, 2021
1 parent 0f81544 commit 0b46435
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# CHANGELOG

## torchx-0.1.1

* Milestone: https://github.com/pytorch/torchx/milestone/2

* `torchx.schedulers`
* #287, #286 - Implement `local_docker` scheduler using docker client lib

* Docs
* #336 - Add context/intro to each docs page
* Minor document corrections

* `torchx`
* #267 - Make torchx.version.TORCHX_IMAGE follow the same semantics as __version__
* #299 - Use base docker image `pytorch/pytorch:1.10.0-cuda11.3-cudnn8-runtime`

* `torchx.specs`
* #301 - Add `metadata` field to `torchx.specs.Role` dataclass
* #302 - Deprecate RunConfig in favor of raw `Dict[str, ConfigValue]`

* `torchx.cli`
* #316 - Implement `torchx builtins --print` that prints the source code of the component

* `torchx.runner`
* #331 - Split run_component into run_component and dryrun_component

## torchx-0.1.0

* `torchx.schedulers`
Expand Down
2 changes: 1 addition & 1 deletion torchx/schedulers/test/docker_scheduler_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_submit_dryrun(self) -> None:
"torchx.pytorch.org/app-id": "app_name_42",
"torchx.pytorch.org/replica-id": "0",
"torchx.pytorch.org/role-name": "trainer",
"torchx.pytorch.org/version": "0.1.1dev0",
"torchx.pytorch.org/version": "0.1.1",
},
"mem_limit": "3000m",
"name": "app_name_42-trainer-0",
Expand Down
2 changes: 1 addition & 1 deletion torchx/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# 0.1.0bN # Beta release
# 0.1.0rcN # Release Candidate
# 0.1.0 # Final release
__version__ = "0.1.1dev0"
__version__ = "0.1.1"

# Use the github container registry images corresponding to the current package
# version.
Expand Down

0 comments on commit 0b46435

Please sign in to comment.