From d591b669e001110af0dcd9a88a5f384f58934b71 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Mon, 27 Mar 2023 01:49:30 +0900 Subject: [PATCH] release: Bump version 0.3.0 -> 0.3.1 --- CHANGES.rst | 18 ++++++++++++++++++ oembedpy/__init__.py | 2 +- setup.cfg | 2 +- 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 47acf77..34bf3c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,24 @@ Change logs =========== +v0.3.1 +====== + +:date: 2023-03-27 (JST) + +Bug fix for type behavior + +Fixes +----- + +* If API response includes un-excepted optionals, Pack ``_extra`` + +Misc +---- + +* Change internal code (delegate discovery) +* Add apidoc into documentation + v0.3.0 ====== diff --git a/oembedpy/__init__.py b/oembedpy/__init__.py index 9c3e5c3..f805f0d 100644 --- a/oembedpy/__init__.py +++ b/oembedpy/__init__.py @@ -1,3 +1,3 @@ """oEmbed client for Python.""" -__version__ = "0.3.0" +__version__ = "0.3.1" diff --git a/setup.cfg b/setup.cfg index 71065be..d6e1b86 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.3.0 +current_version = 0.3.1 commit = True tag = False message = release: Bump version {current_version} -> {new_version}