Skip to content

Commit

Permalink
Merge pull request #14 from dealertrack/release
Browse files Browse the repository at this point in the history
0.2.0
  • Loading branch information
miki725 committed Apr 25, 2017
2 parents bb3454c + a30efa8 commit 8669b20
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,13 +1,13 @@
language: python

python:
- "3.5"
- "3.6"
- "2.7"
- "pypy"

env:
- "$DJANGO='django<1.9'"
- "$DJANGO='django<1.10'"
- "$DJANGO='django<2.0'"

# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
Expand Down
7 changes: 7 additions & 0 deletions HISTORY.rst
Expand Up @@ -3,6 +3,13 @@
History
-------

0.2.0 (2017-04-25)
~~~~~~~~~~~~~~~~~~

* Added ``RoundedDecimalField`` for rounding off decimal to specified ``decimal_places``
instead of validing that higher precision is not allowed
* Added ``URLField`` for automatic mapping between django forms and DRF serializers

0.1.6 (2016-02-29)
~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion drf_braces/__init__.py
Expand Up @@ -4,4 +4,4 @@

__author__ = 'Miroslav Shubernetskiy'
__email__ = 'miroslav@miki725.com'
__version__ = '0.1.6'
__version__ = '0.2.0'
6 changes: 1 addition & 5 deletions tests/urls.py
@@ -1,9 +1,5 @@
# -*- coding: utf-8 -*-
from __future__ import print_function, unicode_literals

from django.conf.urls import patterns


urlpatterns = patterns(
'',
)
urlpatterns = []
10 changes: 4 additions & 6 deletions tox.ini
@@ -1,12 +1,12 @@
[tox]
envlist =
{py27,py35,pypy}-django{18,19}-drf{32,33}
{py27,py36,pypy}-django{18,11}-drf{32,latest}

[testenv]
basepython =
py27: python2.7
py34: python3.4
py35: python3.5
py36: python3.6
pypy: pypy
pypy3: pypy3
setenv =
Expand All @@ -16,11 +16,9 @@ commands =
pip freeze
make check
deps =
django16: django<1.7
django17: django<1.8
django18: django<1.9
django19: django<1.10
django11: django<2.0
drf32: djangorestframework<3.3
drf33: djangorestframework
drflatest: djangorestframework
whitelist_externals =
make

0 comments on commit 8669b20

Please sign in to comment.