Skip to content

Commit

Permalink
Merged 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
diefenbach committed Mar 31, 2012
2 parents 270e69e + 5d80a12 commit 9e9fc9d
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 8 deletions.
1 change: 1 addition & 0 deletions .hgtags
Expand Up @@ -74,3 +74,4 @@ d6a3c0f3de9d1f09891af9b1c2e817f3cc17a3a8 0.6.9
0000000000000000000000000000000000000000 0.6.11
0000000000000000000000000000000000000000 0.6.11
fa82a5c54664f503af1798c16814471ced09ab08 0.6.11
a83ce68b7ddcc44695c16abb07e34e2b5b26f0d1 0.6.12
35 changes: 35 additions & 0 deletions HISTORY.txt
@@ -1,6 +1,36 @@
HISTORY
=======

0.6.12 (2012-03-31)
-------------------

* Bugfix: fixed local variable 'message' referenced before assignment (Maciej Wiśniowski)
* Bugfix: fixed CreditCard's __unicode__ method; issue #172
* Bugfix: added safe filter to static block; issue #174

0.6.11 (2012-03-24)
-------------------

* Bugfix: added csrf token to password reset forms; issue #170
* Bugfix: removed double slash from logo URLs; issue #166
* Updated German translations

0.6.10 (2012-03-17)
-------------------

* Using django-postal 0.9
* Bugfix: don't display non-active products within cart nor add them to order with checkout; adapt tests; fixed issue #154.
* Bugfix: don't delete OrderItems when a product is deleted.

0.6.9 (2012-03-08)
------------------

* Security fix
* Added manufacturer field to product management (Maciej Wiśniowski)
* Bugfix: fixed pagination for product page; issue #152 (Maciej Wiśniowski)
* Bugfix: fixed deleting of image for payment and shipping methods; issue #150
* Bugfix: fixed markup; #issue #148

0.6.8 (2012-03-03)
------------------

Expand Down Expand Up @@ -146,6 +176,11 @@ HISTORY
* Using Python's locale to display currencies
* New contact form

0.5.1 (2012-03-30)
------------------

* Bugfix: fixed upload of images and files.

0.5.0 (2012-03-08)
------------------

Expand Down
8 changes: 2 additions & 6 deletions README.txt
Expand Up @@ -24,15 +24,11 @@ A demo shop can be tried here:

* http://demo.getlfs.com

The latest development state can be found here:

* http://dev.getlfs.com

Changes
=======

Unreleased
----------
0.6.12 (2012-03-31)
-------------------

* Bugfix: added safe filter to static block; issue #174 (Frank Feng)
* Bugfix: Fixed display of short description for variants
Expand Down
4 changes: 2 additions & 2 deletions setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
import os

version = '0.7.0b5'
version = '0.7.0b6'

here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.txt')).read()
Expand Down Expand Up @@ -29,7 +29,7 @@
install_requires=[
'setuptools',
'django-compressor == 1.1.1',
'django-lfstheme == 0.7.0b5',
'django-lfstheme == 0.7.0b6',
'django-pagination == 1.0.7',
'django-paypal == 0.1.2',
'django-portlets == 1.1.1',
Expand Down

0 comments on commit 9e9fc9d

Please sign in to comment.