From 18c9b1fd186f967b775f87c20c9931fcdface223 Mon Sep 17 00:00:00 2001 From: Jack Gaino Date: Sun, 6 Aug 2023 15:00:51 -0400 Subject: [PATCH] =?UTF-8?q?Bump=20version:=202.2.1=20=E2=86=92=202.3.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 a7118d0..b92fb1f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,7 +1,7 @@ [bumpversion] commit = False tag = False -current_version = 2.2.1 +current_version = 2.3.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 4776d54..9342357 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.3.0 - 2023-08-06 ### Changed - automatic retries now apply to all errors instead of just 429 HTTP responses - pinned pyyaml 6.0.1 to avoid issues with cython 3 diff --git a/md2cf/__init__.py b/md2cf/__init__.py index 6b4a73c..f6f4a4e 100644 --- a/md2cf/__init__.py +++ b/md2cf/__init__.py @@ -1,2 +1,2 @@ -__version__ = "2.2.1" +__version__ = "2.3.0" __url__ = "https://github.com/iamjackg/md2cf" diff --git a/setup.py b/setup.py index d26eb3c..4034063 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="md2cf", - version="2.2.1", + version="2.3.0", packages=["md2cf"], url="https://github.com/iamjackg/md2cf", license="MIT",