Skip to content

Commit

Permalink
Merge pull request #527 from benjaoming/1.0-bump
Browse files Browse the repository at this point in the history
1.0 bump
  • Loading branch information
benjaoming committed Nov 8, 2019
2 parents d419d36 + fc33d96 commit 6157a4d
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 21 deletions.
36 changes: 19 additions & 17 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Django-money
django-money
============

.. image:: https://travis-ci.org/django-money/django-money.svg?branch=master
Expand All @@ -20,25 +20,18 @@ Django-money
A little Django app that uses ``py-moneyed`` to add support for Money
fields in your models and forms.

Fork of the Django support that was in
http://code.google.com/p/python-money/

This version adds tests, and comes with several critical bugfixes.

Django versions supported: 1.11, 2.1, 2.2

Python versions supported: 3.5, 3.6, 3.7

PyPy versions supported: PyPy3 2.4
* Django versions supported: 1.11, 2.1, 2.2, 3.0
* Python versions supported: 3.5, 3.6, 3.7
* PyPy versions supported: PyPy3

If you need support for older versions of Django and Python you can use the latest version in 0.11.x branch.
If you need support for older versions of Django and Python, please refer to older releases mentioned in `the release notes <https://django-money.readthedocs.io/en/latest/changes.html>`__.

Via ``py-moneyed``, ``django-money`` gets:
Through the dependency ``py-moneyed``, ``django-money`` gets:

- Support for proper Money value handling (using the standard Money
design pattern)
- A currency class and definitions for all currencies in circulation
- Formatting of most currencies with correct currency sign
* Support for proper Money value handling (using the standard Money
design pattern)
* A currency class and definitions for all currencies in circulation
* Formatting of most currencies with correct currency sign

Installation
------------
Expand Down Expand Up @@ -503,3 +496,12 @@ It will always use ``EUR`` for all ``Money`` instances when ``obj.money`` is cal
class Expenses(models.Model):
amount = MoneyField(max_digits=10, decimal_places=2, money_descriptor_class=MyMoneyDescriptor)
Background
----------

This project is a fork of the Django support that was in
http://code.google.com/p/python-money/

This version adds tests, and comes with several critical bugfixes.
2 changes: 1 addition & 1 deletion djmoney/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "1.0.dev"
__version__ = "1.0"
default_app_config = "djmoney.apps.MoneyConfig"
4 changes: 2 additions & 2 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
Changelog
=========

`1.0`_ - TBA
------------
`1.0`_ - 2019-11-08
-------------------

Added
~~~~~
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ envlist =
django30-py{37,36}
django22-py{37,36}
django21-py{37,36,35,py3}
django111-py{36,35,py}
django111-py{36,35}
lint
docs
skipsdist = true
Expand Down

0 comments on commit 6157a4d

Please sign in to comment.