diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4fb5c7d..a7118d0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.2.0 +current_version = 2.2.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? serialize = {major}.{minor}.{patch}-{release}{build} diff --git a/CHANGELOG.md b/CHANGELOG.md index a26d632..ad5760d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## 2.2.1 - 2023-07-17 ### Fixed - Local section links are no longer rendered as broken relative links (e.g. `[this section](#section-header)`) diff --git a/md2cf/__init__.py b/md2cf/__init__.py index 4b6c7d7..6b4a73c 100644 --- a/md2cf/__init__.py +++ b/md2cf/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.2.0" +__version__ = "2.2.1" __url__ = "https://github.com/iamjackg/md2cf" diff --git a/setup.py b/setup.py index c47f127..1ceecc7 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="md2cf", - version="2.2.0", + version="2.2.1", packages=["md2cf"], url="https://github.com/iamjackg/md2cf", license="MIT",