forked from django-money/django-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGES.txt
31 lines (26 loc) · 1.54 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Changes in 0.5
- Django 1.7 compatibility (Francois Rejete <[email protected]>)
- Added "choices=" to instantiation of currency widget (David Stockwell <[email protected]>)
- Nullable MoneyField should act as default=None (Jacob Hansson <[email protected]>)
- Fixed bug where a non-required MoneyField threw an exception (@spookylukey)
Changes in 0.4
- Python 3 compatibility
- add tox tests
- add format localization
- tag money_localize
Changes in 0.3.3
- Fixed issues with money widget not passing attrs up to django's render method, caused id attribute to not be set in html for widgets (adambregenzer)
- Fixed issue of default currency not being passed on to widget (snbuchholz)
- Implemented the south_triple_field to add support for south migration (mattions)
- Return the right default for south (mattions)
- Django 1.5 compatibility fix (devlocal)
Changes in 0.3.2
- Fixed issues with display_for_field not detecting fields correctly (adambregenzer)
- Add south ignore rule to avoid duplicate currency field when using the frozen orm (Rachid Belaid <[email protected]>)
- Disallow overide of objects manager if not setting it up with an instance (Rachid Belaid <[email protected]>)
Changes in 0.3.1
- Fix AttributeError when Model inherit a manager (Rachid Belaid <[email protected]>)
- Correctly serialize the field (Anand Kumria <[email protected]>)
Changes in 0.3
- Allow django-money to be specified as read-only in a model (Anand Kumria <[email protected]>)
- South support: Declare default attribute values. (Piet Delport <[email protected]>)