Skip to content

Commit

Permalink
release 3.19.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bfontaine committed Sep 11, 2023
1 parent 2a8be36 commit eb2bac3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
Note: the BigBuy API is not versioned and some endpoints are added or removed without notice. The removal of methods
that call deleted endpoints is not considered a breaking change.

## 3.19.0 (2023/09/11)

* Add official support for Python 3.12-rc2

### Breaking change

* Remove the `mode` argument of the class constructor. This has been deprecated for almost a year, since 3.16.0.
Use `sandbox=True` to use the sandbox mode instead of `mode="sandbox"`. Note the class now defaults to production mode
rather than the sandbox.

## 3.18.1 (2023/07/27)

* Add `get_order_delivery_notes` for the new `order/delivery-notes` route
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

poetry run pytest

## Making a release
## Make a release

1. Update the CHANGELOG
2. Update the version in `pyproject.toml` and in `bigbuy/__init__.py`
Expand Down
2 changes: 1 addition & 1 deletion bigbuy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

__author__ = 'Bixoto <info@bixoto.com>'
__version__ = '3.18.1'
__version__ = '3.19.0'

from .api import BigBuy
from .exceptions import (
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pybigbuy"
version = "3.18.1"
version = "3.19.0"
description = "BigBuy API client in Python"
authors = ["Bixoto <info@bixoto.com>"]
license = "MIT"
Expand Down

0 comments on commit eb2bac3

Please sign in to comment.