diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 1d5cf58..a7f54c9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,16 +1,16 @@ [bumpversion] commit = False tag = False -current_version = 2.0.0 +current_version = 2.0.1 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? -serialize = +serialize = {major}.{minor}.{patch}-{release}{build} {major}.{minor}.{patch} [bumpversion:part:release] optional_value = _ first_value = _ -values = +values = _ a b diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bbc959..5c70e91 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.0.1 - 2023-02-06 ### Fixed - Attachments work again diff --git a/md2cf/__init__.py b/md2cf/__init__.py index d889a63..b952794 100644 --- a/md2cf/__init__.py +++ b/md2cf/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.0.0" +__version__ = "2.0.1" __url__ = "https://github.com/iamjackg/md2cf" diff --git a/setup.py b/setup.py index 747f4d4..689e71d 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="md2cf", - version="2.0.0", + version="2.0.1", packages=["md2cf"], url="https://github.com/iamjackg/md2cf", license="MIT",