From 1572ed3c4ecf849b8602d25b733852338f131baf Mon Sep 17 00:00:00 2001 From: Jack Gaino Date: Sat, 8 Jul 2023 20:59:19 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.1.0=20=E2=86=92=202.2.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- CHANGELOG.md | 2 +- md2cf/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2f14f6d..4fb5c7d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.1.0 +current_version = 2.2.0 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 13150e8..3614043 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.0 - 2023-07-08 ### Added - Relative links support section headers (@jimstein3d) - `.pages` files are now supported at the top level as well as in subdirectories (@galund) diff --git a/md2cf/__init__.py b/md2cf/__init__.py index a4f5924..4b6c7d7 100644 --- a/md2cf/__init__.py +++ b/md2cf/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.1.0" +__version__ = "2.2.0" __url__ = "https://github.com/iamjackg/md2cf" diff --git a/setup.py b/setup.py index a920e95..c47f127 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="md2cf", - version="2.1.0", + version="2.2.0", packages=["md2cf"], url="https://github.com/iamjackg/md2cf", license="MIT",