Skip to content

Commit

Permalink
Bump version to 0.3.0, add @lucacorti to authors, adjust README, adju…
Browse files Browse the repository at this point in the history
…st CHANGELOG.
  • Loading branch information
philippbosch committed Aug 5, 2016
1 parent fbdd167 commit b68382b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Contributions from:
- Håkan W, @hakanw
- Ionel Cristian Mărieș, @ionelmc
- JJ, @jdotjdot
- Luca Corti, @lucacorti
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
Version 0.3.0 (2016-08-05)
==========================

* Add support for Django version 1.10
* Remove support for Django versions <1.8. If you use django-geoposition with
Django versions lower than 1.8 please stick to django-geoposition 0.2.x
* Fix for deprecation of SubfieldBase


Version 0.2.3 (2016-06-28)
==========================

Expand Down
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ A model field that can hold a geoposition (latitude/longitude), and correspondin

.. image:: https://travis-ci.org/philippbosch/django-geoposition.svg?branch=master
:target: https://travis-ci.org/philippbosch/django-geoposition

.. image:: https://badges.gitter.im/philippbosch/django-geoposition.svg
:alt: Join the chat at https://gitter.im/philippbosch/django-geoposition
:target: https://gitter.im/philippbosch/django-geoposition?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge

Prerequisites
-------------

Starting with version 0.2, django-geoposition requires Django 1.4.10 or greater. If you need to support
Django versions prior to 1.4.10, please use django-geoposition 0.1.5.
Starting with version 0.3, django-geoposition requires Django 1.8 or greater.
If you need to support Django versions prior to 1.8 please use django-geoposition 0.2.3.
For Django versions prior to 1.4.10 please use django-geoposition 0.1.5.


Installation
Expand Down
2 changes: 1 addition & 1 deletion geoposition/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

default_app_config = 'geoposition.apps.GeoPositionConfig'

VERSION = (0, 2, 3)
VERSION = (0, 3, 0)
__version__ = '.'.join(map(str, VERSION))


Expand Down

0 comments on commit b68382b

Please sign in to comment.