Skip to content

Commit

Permalink
Release v2.0.0 support Django 1.11 and update CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarmcm committed Sep 10, 2017
1 parent af19a7d commit 78c4886
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
*.py[cod]
__pycache__

.DS_Store

# C extensions
*.so

Expand Down
49 changes: 40 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand All @@ -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)*
2 changes: 1 addition & 1 deletion places/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 78c4886

Please sign in to comment.