Skip to content

Commit

Permalink
Bump version to 0.6.0
Browse files Browse the repository at this point in the history
Preparing 0.6.0 release, which is probably a bit overdue already.
Also it's nice to align the release with PyTorch conference.

- Added `torch.utils._pytree._register_pytree_node` and `torch.backends.cuda.sdp_kernel` to the deprecated APIs rules
- Enhanced rule TOR203 to support `torchvision.datasets` and `transforms` in addition to `models`
- Added rules TOR106 and TOR107 to suggest replacing `torch.log(1 + x)` and `torch.exp(x) - 1` with more numerically stable equivalents
- Multiple code refactorings, bug fixes, and quality of life and documentation improvements
  • Loading branch information
kit1980 authored and sbrugman committed Sep 18, 2024
1 parent e0988aa commit 6d37cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchfix/torchfix.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
TorchVisionSingletonImportVisitor,
)

__version__ = "0.5.0"
__version__ = "0.6.0"

DEPRECATED_CONFIG_PATH = "deprecated_symbols.yaml"

Expand Down

0 comments on commit 6d37cc5

Please sign in to comment.