Skip to content

Commit 092ff3f

Browse files
authored
[TorchFix] Update version to 0.1.0 (#4625)
TorchFix has been used in GitHub CI for several Meta projects and has received its first non-Meta contribution recently, so let's update it to Beta status before the presentation on PyTorch Conference 2023. The main change from 0.0.2 release is new rules for deprecated TorchVision APIs.
1 parent 6959ea6 commit 092ff3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ reporting issues.
1111
TorchFix can be used as a Flake8 plugin (linting only) or as a standalone
1212
program (with autofix available for a subset of the lint violations).
1313

14-
Currently TorchFix is in a **prototype/alpha version** stage, so there are a lot of rough
14+
Currently TorchFix is in a **beta version** stage, so there are still a lot of rough
1515
edges and many things can and will change.
1616

1717
## Installation
@@ -35,7 +35,7 @@ Add `--fix` parameter to try to autofix some of the issues (the files will be ov
3535
To see some additional debug info, add `--show-stderr` parameter.
3636

3737
Please keep in mind that autofix is a best-effort mechanism. Given the dynamic nature of Python,
38-
and especially the prototype/alpha version status of TorchFix, it's very difficult to have
38+
and especially the beta version status of TorchFix, it's very difficult to have
3939
certainty when making changes to code, even for the seemingly trivial fixes.
4040

4141
Warnings for issues with codes starting with TOR0, TOR1, and TOR2 are enabled by default.

torchfix/torchfix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
TorchVisionDeprecatedPretrainedVisitor, TorchVisionDeprecatedToTensorVisitor
1717
)
1818

19-
__version__ = "0.0.3"
19+
__version__ = "0.1.0"
2020

2121
DEPRECATED_CONFIG_PATH = Path(__file__).absolute().parent / "deprecated_symbols.yaml"
2222

0 commit comments

Comments
 (0)