Skip to content

Commit bd908be

Browse files
committed
version bump
1 parent 4c1aff3 commit bd908be

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,8 +199,12 @@ A couple of notes on pushing this software to PyPi:
199199
1. Version Bump
200200
1. Change the version in `__init__`.py
201201
2. Change the version in tests
202-
3. Change the download URL in setup.py
202+
3. Change the download URL in setup.py
203203
2. Tag the release `git tag -a v0.x.x`
204204
3. Push to Github
205205
4. Register `python setup.py register -r pypi`
206206
5. Upload `python setup.py sdist upload -r pypi`
207+
208+
## Contributors
209+
210+
Thanks to [@philippbosch](https://github.com/philippbosch) for helping provide Python 3 support with later versions of Django.

json_views/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
__version_info__ = {
2121
'major': 0,
22-
'minor': 6,
23-
'micro': 5,
22+
'minor': 7,
23+
'micro': 0,
2424
'releaselevel': 'final',
2525
'serial': 2
2626
}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"name": "django-generic-json-views",
6262
"version": version,
6363
"url": 'https://github.com/bbengfort/django-generic-json-views',
64-
"download_url": "https://github.com/bbengfort/django-generic-json-views/tarball/v0.6.5",
64+
"download_url": "https://github.com/bbengfort/django-generic-json-views/tarball/v0.7",
6565
"license": 'Apache',
6666
"description": 'Class based generic views that render JSON data.',
6767
"long_description": long_description,

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.6.5")
56+
self.assertEqual(json_views.get_version(), "0.7")

0 commit comments

Comments
 (0)