From 4c199ca6fcca9e6311e34383d8e5210b939b2682 Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Mon, 23 Oct 2023 11:03:24 +0000 Subject: [PATCH] release 3.19.3 --- CHANGELOG.md | 2 +- bigbuy/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0778937..df15525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ Note: the BigBuy API is not versioned and some endpoints are often added or removed without notice. The removal of methods that call deleted endpoints is not considered a breaking change. -## Unreleased +## 3.19.3 (2023/10/23) * Add official support for Python 3.12.0 * Use `BBTimeoutError` for more timeout errors instead of `BBResponseError` diff --git a/bigbuy/__init__.py b/bigbuy/__init__.py index 11328f0..4dfa98a 100644 --- a/bigbuy/__init__.py +++ b/bigbuy/__init__.py @@ -6,7 +6,7 @@ """ __author__ = 'Bixoto ' -__version__ = '3.19.2' +__version__ = '3.19.3' from .api import BigBuy from .exceptions import ( diff --git a/pyproject.toml b/pyproject.toml index cccc48b..211ccde 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pybigbuy" -version = "3.19.2" +version = "3.19.3" description = "BigBuy API client in Python" authors = ["Bixoto "] license = "MIT"