File tree Expand file tree Collapse file tree 5 files changed +24
-18
lines changed Expand file tree Collapse file tree 5 files changed +24
-18
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff 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 ::
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " django-salesman"
3- version = " 1.1.0 "
3+ version = " 1.1.1 "
44description = " Headless e-commerce framework for Django and Wagtail."
55authors = [
" Dino Perovic <[email protected] >" ]
66license = " BSD-3-Clause"
Original file line number Diff line number Diff line change 33"""
44
55__title__ = 'Salesman'
6- __version__ = '1.1.0 '
6+ __version__ = '1.1.1 '
77__author__ = 'Dino Perovic'
You can’t perform that action at this time.
0 commit comments