Skip to content

Commit 082dfc1

Browse files
committed
pull request from @freeworlder
1 parent 87f93f9 commit 082dfc1

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ env:
1010
- DJANGO_VERSION=1.7
1111
- DJANGO_VERSION=1.8
1212
- DJANGO_VERSION=1.9
13+
- DJANGO_VERSION=1.10
1314

1415
# command to install dependencies
1516
install:

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
# Django Generic JSON Views
22

33
[![Stories in Ready](https://badge.waffle.io/bbengfort/django-generic-json-views.png?label=ready&title=Ready)](https://waffle.io/bbengfort/django-generic-json-views)
4-
[![Build Status](https://travis-ci.org/bbengfort/django-generic-json-views.svg)](https://travis-ci.org/bbengfort/django-generic-json-views) [![PyPi version](https://pypip.in/v/django-generic-json-views/badge.png)](https://crate.io/packages/django-generic-json-views/)
5-
[![PyPi downloads](https://pypip.in/d/django-generic-json-views/badge.png)](https://crate.io/packages/django-generic-json-views/)
4+
[![Build Status](https://travis-ci.org/bbengfort/django-generic-json-views.svg)](https://travis-ci.org/bbengfort/django-generic-json-views) [![PyPi version](https://img.shields.io/pypi/v/django-generic-json-views.svg)](https://pypi.python.org/pypi/django-generic-json-views/)
65

76
**Class based generic views that render JSON data.**
87

@@ -207,4 +206,6 @@ A couple of notes on pushing this software to PyPi:
207206

208207
## Contributors
209208

210-
Thanks to [@philippbosch](https://github.com/philippbosch) for helping provide Python 3 support with later versions of Django.
209+
Thanks to [@philippbosch](https://github.com/philippbosch) for helping provide Python 3 support with later versions of Django.
210+
211+
Thanks to [@freeworlder](https://github.com/freeworlder) who provided Django 1.10 compatibility.

json_views/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
__version_info__ = {
2121
'major': 0,
22-
'minor': 7,
22+
'minor': 8,
2323
'micro': 0,
2424
'releaselevel': 'final',
2525
'serial': 2

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ def test_version(self):
5353
Reminder to bump version
5454
"""
5555
import json_views
56-
self.assertEqual(json_views.get_version(), "0.7")
56+
self.assertEqual(json_views.get_version(), "0.8")

0 commit comments

Comments
 (0)