diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e1d67ef..071d212c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and the changes for the upcoming release can be found in +## [0.60.1](https://github.com/jshwi/docsig/tree/v0.60.1) - 2024-08-29 + +### Fixed + +- only check params for incorrect-indent ([#427](https://github.com/jshwi/docsig/issues/427)) + ## [0.60.0](https://github.com/jshwi/docsig/tree/v0.60.0) - 2024-07-31 ### Added diff --git a/Makefile b/Makefile index 8e237140..b3f026f3 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.60.0 +VERSION := 0.60.1 POETRY := bin/poetry/bin/poetry diff --git a/README.rst b/README.rst index aa6821fc..52a116ed 100644 --- a/README.rst +++ b/README.rst @@ -145,7 +145,7 @@ ensure your installation has registered `docsig` .. code-block:: console $ flake8 --version - 7.1.0 (docsig: 0.60.0, mccabe: 0.7.0, pycodestyle: 2.12.0, pyflakes: 3.2.0) CPython 3.8.13 on Darwin + 7.1.0 (docsig: 0.60.1, mccabe: 0.7.0, pycodestyle: 2.12.0, pyflakes: 3.2.0) CPython 3.8.13 on Darwin And now use `flake8` to lint your files @@ -234,7 +234,7 @@ Standalone repos: - repo: https://github.com/jshwi/docsig - rev: v0.60.0 + rev: v0.60.1 hooks: - id: docsig args: @@ -253,7 +253,7 @@ or integrated with ``flake8`` hooks: - id: flake8 additional_dependencies: - - docsig==0.60.0 + - docsig==0.60.1 args: - "--sig-check-class" - "--sig-check-dunders" diff --git a/SECURITY.md b/SECURITY.md index 6d2dab57..144afd63 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ | Version | Supported | |---------|--------------------| -| 0.60.0 | :white_check_mark: | +| 0.60.1 | :white_check_mark: | ## Reporting a Vulnerability diff --git a/changelog/427.fix.md b/changelog/427.fix.md deleted file mode 100644 index 70be49cd..00000000 --- a/changelog/427.fix.md +++ /dev/null @@ -1 +0,0 @@ -only check params for incorrect-indent \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index d5893a70..e2af31c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ author = "Stephen Whitlock" # The full version, including alpha/beta/rc tags -release = "0.60.0" +release = "0.60.1" # -- General configuration --------------------------------------------------- diff --git a/docsig/_version.py b/docsig/_version.py index 0f04e4c1..78ff05e3 100644 --- a/docsig/_version.py +++ b/docsig/_version.py @@ -8,4 +8,4 @@ caused by accessing it through __init__. """ -__version__ = "0.60.0" +__version__ = "0.60.1" diff --git a/package.json b/package.json index b4ffad5f..a94f4ea6 100644 --- a/package.json +++ b/package.json @@ -28,5 +28,5 @@ "bump:minor": "make bump part=minor", "bump:patch": "make bump part=patch" }, - "version": "0.60.0" + "version": "0.60.1" } diff --git a/pyproject.toml b/pyproject.toml index 3dbe09fd..6f72e541 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,7 +11,7 @@ line-length = 79 allow_dirty = true commit = true commit_args = "-sS" -current_version = "0.60.0" +current_version = "0.60.1" message = "bump: version {current_version} → {new_version}" sign_tags = true tag = true @@ -132,7 +132,7 @@ maintainers = [ name = "docsig" readme = "README.rst" repository = "https://github.com/jshwi/docsig" -version = "0.60.0" +version = "0.60.1" [tool.poetry.dependencies] Sphinx = "^7.0.0"