Skip to content

Commit

Permalink
Version bumped to 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rcastane committed Oct 29, 2018
1 parent 81d2e18 commit cc0a8f1
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 0.3.6 (2018-10-29)
==========================

* Leaflet backend


Version 0.3.5 (2018-10-28)
==========================

* Django 1.11 compatibility


Version 0.3.4 (2018-10-26)
==========================

Expand Down
8 changes: 7 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,18 @@ Installation
"geoposition",
)

- Set your Google API key in you settings file::
- If you want to use Google Maps, set your Google API key in your settings file::

GEOPOSITION_GOOGLE_MAPS_API_KEY = 'YOUR_API_KEY'

API keys may be obtained here: https://developers.google.com/maps/documentation/javascript/get-api-key

- If you want to use OpenStreetMap, activate Leaflet backend in your settings file:

GEOPOSITION_BACKEND = 'leaflet'

As Leaflet is provider agnostic, you could use any other map provider from the following list: http://leaflet-extras.github.io/leaflet-providers/preview


Usage
-----
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, 3, 4)
VERSION = (0, 3, 6)
__version__ = '.'.join(map(str, VERSION))


Expand Down

0 comments on commit cc0a8f1

Please sign in to comment.