diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 58fe6335..52a69b44 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.27.0 +current_version = 0.28.0 commit = True tag = True sign_tags = True diff --git a/CHANGELOG.md b/CHANGELOG.md index e307b3f1..284fce7c 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.27.0...HEAD) +[Unreleased](https://github.com/jshwi/docsig/compare/v0.28.0...HEAD) +------------------------------------------------------------------------ + +[0.28.0](https://github.com/jshwi/docsig/releases/tag/v0.28.0) - 2022-12-04 ------------------------------------------------------------------------ ### Changed - Generate function string representation only if function fails diff --git a/docs/conf.py b/docs/conf.py index a2fd1db0..8b6be452 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.27.0" +release = "0.28.0" # -- General configuration --------------------------------------------------- diff --git a/docsig/_version.py b/docsig/_version.py index 3d989597..2daf3436 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.27.0" +__version__ = "0.28.0" diff --git a/package-lock.json b/package-lock.json index 49a9d28c..7e01be85 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "docsig", - "version": "0.27.0", + "version": "0.28.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "docsig", - "version": "0.27.0", + "version": "0.28.0", "license": "MIT", "devDependencies": { "npm-run-all": "^4.1.5", diff --git a/package.json b/package.json index a44707ee..a260a3da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "docsig", - "version": "0.27.0", + "version": "0.28.0", "description": "Check signature params for proper documentation", "private": true, "directories": { diff --git a/pyproject.toml b/pyproject.toml index 9f029d87..0b8480d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ maintainers = [ name = "docsig" readme = "README.rst" repository = "https://github.com/jshwi/docsig" -version = "0.27.0" +version = "0.28.0" [tool.poetry.dependencies] arcon = "^0.1.1"