Skip to content

Commit

Permalink
Bump to version 0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
jrief committed Aug 24, 2017
1 parent 8fbf097 commit 624f0c6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,23 @@ Changelog for django-SHOP
takes from the ``cart_item``, rather than beeing recalculated.
* :class:`shop.cascade.cart.ShopCartPlugin` accepts two children: ``ShopLeftExtension`` and ``ShopRightExtension``
which can be used to add plugins inside the cart's table footer.
* In :class:`shop.models.notification.Notification` renamed field ``mail_to`` to ``recipient`` and
converted it to a ``ForeignKey``. Added an enum field ``notify`` to distinguish between different
kinds of recipients.
* Refactored ``CustomerStateField`` into a reusable :class:`shop.models.fields.ChoiceEnumField` which
can be used for both, ``Notify`` as well as ``CustomerState``.
* Adopted to **djangocms-cascade** version 0.14, which allows to render static pages using plugin
descriptions in JSON.
* Added Paginator to Order List View.
* Refactored ``shop.app_settings`` into ``shop.conf.app_settings`` to be usable by Sphinx in docstrings.
* Added :meth:`shop.models.order.BaseOrder.get_all_transitions()` which returns all possible transitions
for the the Order class.
* In :class:`shop.rest.renderers.ShopTemplateHTMLRenderer` do not pollute ``template_context`` with
serialized data on the root level.
* Fix #623: Template ``auth/register-user.html`` did not validate properly, when Reset password was checked.
* Added AngularJS filter ``range`` to emulate enumerations in JavaScript.
* Fallback to hard-coded URL if CMS page for "Continue Shopping" is missing.



0.10.2
Expand Down
2 changes: 1 addition & 1 deletion shop/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
11. git commit -m 'Start with <version>'
12. git push
"""
__version__ = '0.11.dev'
__version__ = '0.11'

default_app_config = 'shop.apps.ShopConfig'

0 comments on commit 624f0c6

Please sign in to comment.