From 0e884c860b148a089a13f746344143fab37e5134 Mon Sep 17 00:00:00 2001 From: Ben Mather Date: Mon, 28 Mar 2022 23:15:19 +0100 Subject: [PATCH] Release 0.11.5 * Improves windows support. * Fixes wildcard import warning hook. --- README.rst | 2 +- src/ssort/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 2fbcd4e..e9ca249 100644 --- a/README.rst +++ b/README.rst @@ -113,7 +113,7 @@ and registering ssort in your `.pre-commit-config.yaml`. repos: # ... - repo: https://github.com/bwhmather/ssort - rev: 0.11.4 + rev: 0.11.5 hooks: - id: ssort - repo: https://github.com/pycqa/isort diff --git a/src/ssort/__init__.py b/src/ssort/__init__.py index c5d4fd6..666da49 100644 --- a/src/ssort/__init__.py +++ b/src/ssort/__init__.py @@ -17,5 +17,5 @@ assert UnknownEncodingError is not None assert WildcardImportError is not None -__version__ = "0.11.4" +__version__ = "0.11.5" __all__ = ["ssort"]