From f61e8abc7727e0e4903e9affd34ab99cd23691e0 Mon Sep 17 00:00:00 2001 From: Jack Gaino Date: Sat, 11 Mar 2023 16:48:30 -0500 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.0.1=20=E2=86=92=202.0.2?= 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 a7f54c9..2751dc0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.0.1 +current_version = 2.0.2 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 b197452..b34aa69 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.2 - 2023-03-11 ### Fixed - Relative links work correctly when there are more than 10 on a page diff --git a/md2cf/__init__.py b/md2cf/__init__.py index b952794..b94f84d 100644 --- a/md2cf/__init__.py +++ b/md2cf/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.0.1" +__version__ = "2.0.2" __url__ = "https://github.com/iamjackg/md2cf" diff --git a/setup.py b/setup.py index 689e71d..e164095 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="md2cf", - version="2.0.1", + version="2.0.2", packages=["md2cf"], url="https://github.com/iamjackg/md2cf", license="MIT",