From 6d37cc5287fdd3b2a6911d56af5958975bd1c538 Mon Sep 17 00:00:00 2001 From: Sergii Dymchenko Date: Tue, 17 Sep 2024 17:35:13 -0700 Subject: [PATCH] Bump version to 0.6.0 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 --- torchfix/torchfix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchfix/torchfix.py b/torchfix/torchfix.py index 0798a5e..a14cd9f 100644 --- a/torchfix/torchfix.py +++ b/torchfix/torchfix.py @@ -22,7 +22,7 @@ TorchVisionSingletonImportVisitor, ) -__version__ = "0.5.0" +__version__ = "0.6.0" DEPRECATED_CONFIG_PATH = "deprecated_symbols.yaml"