diff --git a/.gitignore b/.gitignore index 9928c23..90f91d8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ *.py[cod] __pycache__ +.DS_Store + # C extensions *.so diff --git a/CHANGELOG.md b/CHANGELOG.md index 659e035..29787c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,29 +1,57 @@ # Change Log -All notable changes to this project will be documented in this file. -This project adheres to [Semantic Versioning](http://semver.org/). +## [v2.0.0](https://github.com/oscarmcm/django-places/tree/v1.1.4) (2017-09-09) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.1.4...v2.0.0) + +**Implemented enhancements:** + +- Update for django 1.11 [\#12](https://github.com/oscarmcm/django-places/pull/12) ([pavillet](https://github.com/pavillet)) + +**Fixed bugs:** + +- Django 1.11 not render widget [\#9](https://github.com/oscarmcm/django-places/issues/9) + +## [v1.1.4](https://github.com/oscarmcm/django-places/tree/v1.1.4) (2017-05-08) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.1.3...v1.1.4) + +**Fixed bugs:** + +- undefined name Location [\#10](https://github.com/oscarmcm/django-places/issues/10) + +## [v1.1.3](https://github.com/oscarmcm/django-places/tree/v1.1.3) (2017-05-07) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.1.2...v1.1.3) + +**Fixed bugs:** + +- Kwargs problem [\#8](https://github.com/oscarmcm/django-places/issues/8) +- Problems with djplaces [\#6](https://github.com/oscarmcm/django-places/issues/6) + +## [v1.1.2](https://github.com/oscarmcm/django-places/tree/v1.1.2) (2017-05-07) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.1.1...v1.1.2) + +## [v1.1.1](https://github.com/oscarmcm/django-places/tree/v1.1.1) (2017-01-22) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.1.0...v1.1.1) + +## [v1.1.0](https://github.com/oscarmcm/django-places/tree/v1.1.0) (2017-01-09) +[Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.5...v1.1.0) ## [v1.0.5](https://github.com/oscarmcm/django-places/tree/v1.0.5) (2016-07-26) [Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.4...v1.0.5) -**Merged pull requests:** +**Implemented enhancements:** -Add own jquery to avoid conflicts and be able to used in admin and templates [\#5](https://github.com/oscarmcm/django-places/pull/5)([darwing1210](https://github.com/darwing1210)) +- Add own jquery to avoid conflicts and be able to used in admin and templates [\#5](https://github.com/oscarmcm/django-places/pull/5) ([darwing1210](https://github.com/darwing1210)) ## [v1.0.4](https://github.com/oscarmcm/django-places/tree/v1.0.4) (2016-07-20) [Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.3...v1.0.4) **Fixed bugs:** -- Use Django admin jQuery +- i18n support [\#3](https://github.com/oscarmcm/django-places/issues/3) ## [v1.0.3](https://github.com/oscarmcm/django-places/tree/v1.0.3) (2016-06-01) [Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.2...v1.0.3) -**Fixed bugs:** - -- i18n support [\#3](https://github.com/oscarmcm/django-places/issues/3) - ## [v1.0.2](https://github.com/oscarmcm/django-places/tree/v1.0.2) (2016-05-12) [Full Changelog](https://github.com/oscarmcm/django-places/compare/v1.0.1...v1.0.2) @@ -39,3 +67,6 @@ Add own jquery to avoid conflicts and be able to used in admin and templates [\# - Fixes \#1 Geocomplete is not a function [\#2](https://github.com/oscarmcm/django-places/pull/2) ([oscarmcm](https://github.com/oscarmcm)) ## [v1.0.0](https://github.com/oscarmcm/django-places/tree/v1.0.0) (2016-04-28) + + +\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* diff --git a/places/__init__.py b/places/__init__.py index 2b78763..361279f 100644 --- a/places/__init__.py +++ b/places/__init__.py @@ -11,7 +11,7 @@ from decimal import Decimal default_app_config = 'places.apps.PlacesConfig' -__version__ = '1.1.4' +__version__ = '2.0.0' class Places(object):