From b9238bc9da6a4c2d32164dca2b6a791098ad714e Mon Sep 17 00:00:00 2001 From: Stephen Whitlock Date: Tue, 16 Jul 2024 22:04:09 +1000 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.58.0=20=E2=86=92=200.59.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stephen Whitlock --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- README.rst | 6 +++--- SECURITY.md | 2 +- changelog/381.change.md | 1 - docs/conf.py | 2 +- docsig/_version.py | 2 +- package.json | 2 +- pyproject.toml | 4 ++-- 9 files changed, 16 insertions(+), 11 deletions(-) delete mode 100644 changelog/381.change.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 43fdff3b..5b1ffe7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and the changes for the upcoming release can be found in +## [0.59.0](https://github.com/jshwi/docsig/tree/v0.59.0) - 2024-07-16 + +### Changed + +- sort checked paths ([#381](https://github.com/jshwi/docsig/issues/381)) + ## [0.58.0](https://github.com/jshwi/docsig/tree/v0.58.0) - 2024-07-15 ### Changed diff --git a/Makefile b/Makefile index 76603979..66419964 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.58.0 +VERSION := 0.59.0 POETRY := bin/poetry/bin/poetry diff --git a/README.rst b/README.rst index dfef43b9..7e5fc02b 100644 --- a/README.rst +++ b/README.rst @@ -143,7 +143,7 @@ ensure your installation has registered `docsig` .. code-block:: console $ flake8 --version - 7.1.0 (docsig: 0.58.0, mccabe: 0.7.0, pycodestyle: 2.12.0, pyflakes: 3.2.0) CPython 3.8.13 on Darwin + 7.1.0 (docsig: 0.59.0, 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 @@ -232,7 +232,7 @@ Standalone repos: - repo: https://github.com/jshwi/docsig - rev: v0.58.0 + rev: v0.59.0 hooks: - id: docsig args: @@ -251,7 +251,7 @@ or integrated with ``flake8`` hooks: - id: flake8 additional_dependencies: - - docsig==0.58.0 + - docsig==0.59.0 args: - "--sig-check-class" - "--sig-check-dunders" diff --git a/SECURITY.md b/SECURITY.md index a879cf0d..3148a492 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ | Version | Supported | |---------|--------------------| -| 0.58.0 | :white_check_mark: | +| 0.59.0 | :white_check_mark: | ## Reporting a Vulnerability diff --git a/changelog/381.change.md b/changelog/381.change.md deleted file mode 100644 index 8277cf69..00000000 --- a/changelog/381.change.md +++ /dev/null @@ -1 +0,0 @@ -sort checked paths \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index ea5108b0..97c1865d 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.58.0" +release = "0.59.0" # -- General configuration --------------------------------------------------- diff --git a/docsig/_version.py b/docsig/_version.py index 9dec8ea5..ef376b61 100644 --- a/docsig/_version.py +++ b/docsig/_version.py @@ -8,4 +8,4 @@ caused by accessing it through __init__. """ -__version__ = "0.58.0" +__version__ = "0.59.0" diff --git a/package.json b/package.json index 0483522d..c9c5645a 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.58.0" + "version": "0.59.0" } diff --git a/pyproject.toml b/pyproject.toml index b17019ba..9a41a84a 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.58.0" +current_version = "0.59.0" 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.58.0" +version = "0.59.0" [tool.poetry.dependencies] Sphinx = "^7.0.0"