Skip to content

Commit

Permalink
Merge pull request #101 from benjaoming/bump-version
Browse files Browse the repository at this point in the history
1.1.6: Bump version and update release notes
  • Loading branch information
benjaoming authored Oct 30, 2020
2 parents dc8cce0 + 3c1cb7a commit d4fd74f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 26 deletions.
2 changes: 1 addition & 1 deletion django_nyt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
_disable_notifications = False

__version__ = "1.1.5"
__version__ = "1.1.6"

default_app_config = "django_nyt.apps.DjangoNytConfig"
59 changes: 34 additions & 25 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@ Release Notes
1.1.5
-----

Added
^^^^^

* Django 3.1 support (added to test matrix)

1.1.5
-----

Fixed
^^^^^

* Do not access ``Settings.user`` in ``Settings.clean()`` on blank new objects :url-issue:`92`
* Do not access ``Settings.user`` in ``Settings.clean()`` on blank new objects :url-issue:`92`


1.1.4
Expand All @@ -16,7 +24,7 @@ Fixed
Added
^^^^^

* Django 3.0 support (added to test matrix)
* Django 3.0 support (added to test matrix)


1.1.3
Expand All @@ -25,8 +33,8 @@ Added
Added
^^^^^

* Django 2.2 support (added to test matrix)
* Linting (no changes to functionality)
* Django 2.2 support (added to test matrix)
* Linting (no changes to functionality)


1.1.2
Expand All @@ -35,7 +43,7 @@ Added
Added
^^^^^

* Django 2.1 support (no changes in code)
* Django 2.1 support (no changes in code)


1.1.1
Expand All @@ -44,11 +52,12 @@ Added
Added
^^^^^

* Python 3.7 support :url-issue:`81`
* Python 3.7 support :url-issue:`81`

Deprecations
^^^^^^^^^^^^
* Removed ``django_nyt.notify``, use ``django_nyt.utils.notify``

* Removed ``django_nyt.notify``, use ``django_nyt.utils.notify``



Expand All @@ -58,20 +67,20 @@ Deprecations
New features
^^^^^^^^^^^^

* Django 2.0 support :url-issue:`55`
* Django 2.0 support :url-issue:`55`

Bug fixes
^^^^^^^^^

* Restored missing translation files :url-issue:`73`
* Restored missing translation files :url-issue:`73`

Deprecations
^^^^^^^^^^^^

* Django < 1.11 support is dropped :url-issue:`62`
* Python < 3.4 support is dropped :url-issue:`65` and :url-issue:`68`
* Deprecate ``django_nyt.urls.get_pattern``, use ``include('django_nyt.urls')`` instead :url-issue:`63`
* Removed ``django_nyt.VERSION``, use `django_nyt.__version__` instead :url-issue:`73`
* Django < 1.11 support is dropped :url-issue:`62`
* Python < 3.4 support is dropped :url-issue:`65` and :url-issue:`68`
* Deprecate ``django_nyt.urls.get_pattern``, use ``include('django_nyt.urls')`` instead :url-issue:`63`
* Removed ``django_nyt.VERSION``, use `django_nyt.__version__` instead :url-issue:`73`

1.0
---
Expand All @@ -87,25 +96,25 @@ You can switch off django-channels by setting
New features
^^^^^^^^^^^^

* Support for ``channels`` and web sockets. :url-issue:`21`
* Django 1.9, 1.10, and 1.11 support :url-issue:`25`
* Default AppConfig ``"django_nyt.apps.DjangoNytConfig"`` :url-issue:`57`
* Support for ``channels`` and web sockets. :url-issue:`21`
* Django 1.9, 1.10, and 1.11 support :url-issue:`25`
* Default AppConfig ``"django_nyt.apps.DjangoNytConfig"`` :url-issue:`57`


Bug fixes
^^^^^^^^^

* Celery will auto-load ``django_nyt.tasks`` when ``channels`` isn't installed :url-issue:`23`
* Error in channels consumer when requested with AnonymousUser (Benjamin Bach) :url-issue:`50` :url-issue:`51`
* Clear the notification type cache every time a new notification type is created or deleted (Benjamin Bach) :url-issue:`34` :url-issue:`36`
* Explicitly accept WebSocket connections (Kim Desrosiers) :url-issue:`35`
* Fix critical django-channels err (Tomaž Žniderič) :url-issue:`29`
* Correctly set default options for ``notifymail`` management command (Benjamin Bach) :url-issue:`32`
* Adds Django 1.11 to test matrix (Benjamin Bach) :url-issue:`32`
* Do not return ``bytes`` in ``__str__`` (Øystein Hiåsen) :url-issue:`28`
* Celery will auto-load ``django_nyt.tasks`` when ``channels`` isn't installed :url-issue:`23`
* Error in channels consumer when requested with AnonymousUser (Benjamin Bach) :url-issue:`50` :url-issue:`51`
* Clear the notification type cache every time a new notification type is created or deleted (Benjamin Bach) :url-issue:`34` :url-issue:`36`
* Explicitly accept WebSocket connections (Kim Desrosiers) :url-issue:`35`
* Fix critical django-channels err (Tomaž Žniderič) :url-issue:`29`
* Correctly set default options for ``notifymail`` management command (Benjamin Bach) :url-issue:`32`
* Adds Django 1.11 to test matrix (Benjamin Bach) :url-issue:`32`
* Do not return ``bytes`` in ``__str__`` (Øystein Hiåsen) :url-issue:`28`


Deprecations
^^^^^^^^^^^^

* Django 1.5 and 1.6 support is dropped
* Django 1.5 and 1.6 support is dropped

0 comments on commit d4fd74f

Please sign in to comment.