diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2b20870e..cbfd86ad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.13.0 +current_version = 0.14.0 commit = True tag = True sign_tags = True diff --git a/CHANGELOG.md b/CHANGELOG.md index a1bbc5c1..95ab0855 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -[Unreleased](https://github.com/jshwi/docsig/compare/v0.13.0...HEAD) +[Unreleased](https://github.com/jshwi/docsig/compare/v0.14.0...HEAD) +------------------------------------------------------------------------ + +[0.14.0](https://github.com/jshwi/docsig/releases/tag/v0.14.0) - 2022-07-10 ------------------------------------------------------------------------ ### Added - add: Adds `E110` catch-all for documentation not equal to its signature diff --git a/docs/conf.py b/docs/conf.py index 03b8b879..8ac79596 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = "Stephen Whitlock" # The full version, including alpha/beta/rc tags -release = "0.13.0" +release = "0.14.0" # -- General configuration --------------------------------------------------- diff --git a/docsig/_version.py b/docsig/_version.py index cce31aba..f76dca94 100644 --- a/docsig/_version.py +++ b/docsig/_version.py @@ -7,4 +7,4 @@ Allows for access to the version internally without cyclic imports caused by accessing it through __init__. """ -__version__ = "0.13.0" +__version__ = "0.14.0" diff --git a/package-lock.json b/package-lock.json index ecfcf1ef..46bb42cd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "docsig", - "version": "0.13.0", + "version": "0.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "docsig", - "version": "0.13.0", + "version": "0.14.0", "license": "MIT", "devDependencies": { "npm-run-all": "^4.1.5", diff --git a/package.json b/package.json index 5ec9827b..6ed5b626 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docsig", - "version": "0.13.0", + "version": "0.14.0", "description": "Check signature params for proper documentation", "private": true, "directories": { diff --git a/pyproject.toml b/pyproject.toml index 06f1cfa3..8836d2b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -58,7 +58,7 @@ maintainers = [ name = "docsig" readme = "README.rst" repository = "https://github.com/jshwi/docsig" -version = "0.13.0" +version = "0.14.0" [tool.poetry.dependencies] astroid = "^2.11.6"