Skip to content

Commit

Permalink
bump: version 0.60.0 → 0.60.1
Browse files Browse the repository at this point in the history
Signed-off-by: Stephen Whitlock <stephen@jshwisolutions.com>
  • Loading branch information
jshwi committed Aug 29, 2024
1 parent 98c08af commit 9542ba3
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 11 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ and the changes for the upcoming release can be found in

<!-- release notes start -->

## [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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION := 0.60.0
VERSION := 0.60.1

POETRY := bin/poetry/bin/poetry

Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -234,7 +234,7 @@ Standalone
repos:
- repo: https://github.com/jshwi/docsig
rev: v0.60.0
rev: v0.60.1
hooks:
- id: docsig
args:
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

| Version | Supported |
|---------|--------------------|
| 0.60.0 | :white_check_mark: |
| 0.60.1 | :white_check_mark: |

## Reporting a Vulnerability

Expand Down
1 change: 0 additions & 1 deletion changelog/427.fix.md

This file was deleted.

2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion docsig/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
caused by accessing it through __init__.
"""

__version__ = "0.60.0"
__version__ = "0.60.1"
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
"bump:minor": "make bump part=minor",
"bump:patch": "make bump part=patch"
},
"version": "0.60.0"
"version": "0.60.1"
}
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 9542ba3

Please sign in to comment.