Skip to content

Commit 8be95a8

Browse files
committed
Bump to 1.1.1
1 parent a2981d2 commit 8be95a8

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed

docs/releases/1.1.1.rst

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#####
2+
1.1.1
3+
#####
4+
5+
*2022-03-21*
6+
7+
Added
8+
-----
9+
10+
- Added :class:`salesman.core.typing.Product` protocol used to check product types.
11+
- Added :meth:`salesman.orders.models.BaseOrder.get_items` to mirror the ``BaseBasket.get_items`` API.
12+
13+
Changed
14+
-------
15+
16+
- Renamed ``DefaultSettings`` to ``AppSettings`` in config module.
17+
- Use cached properties for settings that load objects.
18+
- Renamed ``owner`` field on ``BaseBasket`` to ``user`` for consistency with ``BaseOrder``.
19+
20+
.. warning::
21+
This update requires migrations to created (if swapped models are used) and run.

docs/releases/dev.rst

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,3 @@ In Development
33
##############
44

55
*TBA*
6-
7-
Added
8-
-----
9-
10-
- Added :class:`salesman.core.typing.Product` protocol used to check product types.
11-
- Added :meth:`salesman.orders.models.BaseOrder.get_items` to mirror the ``BaseBasket.get_items`` API.
12-
13-
Changed
14-
-------
15-
16-
- Renamed ``DefaultSettings`` to ``AppSettings`` in config module.
17-
- Use cached properties for settings that load objects.
18-
- Renamed ``owner`` field on ``BaseBasket`` to ``user`` for consistency with ``BaseOrder``.
19-
20-
.. warning::
21-
This update requires migrations to created (if swapped models are used) and run.

docs/releases/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Release notes and upgrade information. This project adheres to
1818
:caption: v1.1
1919
:maxdepth: 1
2020

21+
1.1.1
2122
1.1.0
2223

2324
.. toctree::

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-salesman"
3-
version = "1.1.0"
3+
version = "1.1.1"
44
description = "Headless e-commerce framework for Django and Wagtail."
55
authors = ["Dino Perovic <[email protected]>"]
66
license = "BSD-3-Clause"

salesman/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"""
44

55
__title__ = 'Salesman'
6-
__version__ = '1.1.0'
6+
__version__ = '1.1.1'
77
__author__ = 'Dino Perovic'

0 commit comments

Comments
 (0)