diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b2913a7b..ccffa524 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.33.2 +current_version = 0.34.0 commit = True tag = True sign_tags = True diff --git a/CHANGELOG.md b/CHANGELOG.md index f640f8bd..d6ef4f71 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.33.2...HEAD) +[Unreleased](https://github.com/jshwi/docsig/compare/v0.34.0...HEAD) +------------------------------------------------------------------------ + +[0.34.0](https://github.com/jshwi/docsig/releases/tag/v0.34.0) - 2023-01-23 ------------------------------------------------------------------------ ### Added - Add support for Python 3.10 diff --git a/docs/conf.py b/docs/conf.py index 67cc7194..f74f63fa 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.33.2" +release = "0.34.0" # -- General configuration --------------------------------------------------- diff --git a/docsig/_version.py b/docsig/_version.py index 5df1165a..effd7481 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.33.2" +__version__ = "0.34.0" diff --git a/package-lock.json b/package-lock.json index cfd90b39..dfd1f2d6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "docsig", - "version": "0.33.2", + "version": "0.34.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "docsig", - "version": "0.33.2", + "version": "0.34.0", "license": "MIT", "devDependencies": { "npm-run-all": "^4.1.5" diff --git a/package.json b/package.json index cf6bcd88..726627e0 100644 --- a/package.json +++ b/package.json @@ -49,5 +49,5 @@ "toml:sort": "poetry run pyaud sort-pyproject", "types": "poetry run pyaud typecheck" }, - "version": "0.33.2" + "version": "0.34.0" } diff --git a/pyproject.toml b/pyproject.toml index 2c8c7131..b2f55951 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -70,7 +70,7 @@ maintainers = [ name = "docsig" readme = "README.rst" repository = "https://github.com/jshwi/docsig" -version = "0.33.2" +version = "0.34.0" [tool.poetry.dependencies] Pygments = "^2.13.0"