Skip to content

Commit d4fd74f

Browse files
authored
Merge pull request #101 from benjaoming/bump-version
1.1.6: Bump version and update release notes
2 parents dc8cce0 + 3c1cb7a commit d4fd74f

File tree

2 files changed

+35
-26
lines changed

2 files changed

+35
-26
lines changed

django_nyt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
_disable_notifications = False
22

3-
__version__ = "1.1.5"
3+
__version__ = "1.1.6"
44

55
default_app_config = "django_nyt.apps.DjangoNytConfig"

docs/release_notes.rst

Lines changed: 34 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ Release Notes
44
1.1.5
55
-----
66

7+
Added
8+
^^^^^
9+
10+
* Django 3.1 support (added to test matrix)
11+
12+
1.1.5
13+
-----
14+
715
Fixed
816
^^^^^
917

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

1220

1321
1.1.4
@@ -16,7 +24,7 @@ Fixed
1624
Added
1725
^^^^^
1826

19-
* Django 3.0 support (added to test matrix)
27+
* Django 3.0 support (added to test matrix)
2028

2129

2230
1.1.3
@@ -25,8 +33,8 @@ Added
2533
Added
2634
^^^^^
2735

28-
* Django 2.2 support (added to test matrix)
29-
* Linting (no changes to functionality)
36+
* Django 2.2 support (added to test matrix)
37+
* Linting (no changes to functionality)
3038

3139

3240
1.1.2
@@ -35,7 +43,7 @@ Added
3543
Added
3644
^^^^^
3745

38-
* Django 2.1 support (no changes in code)
46+
* Django 2.1 support (no changes in code)
3947

4048

4149
1.1.1
@@ -44,11 +52,12 @@ Added
4452
Added
4553
^^^^^
4654

47-
* Python 3.7 support :url-issue:`81`
55+
* Python 3.7 support :url-issue:`81`
4856

4957
Deprecations
5058
^^^^^^^^^^^^
51-
* Removed ``django_nyt.notify``, use ``django_nyt.utils.notify``
59+
60+
* Removed ``django_nyt.notify``, use ``django_nyt.utils.notify``
5261

5362

5463

@@ -58,20 +67,20 @@ Deprecations
5867
New features
5968
^^^^^^^^^^^^
6069

61-
* Django 2.0 support :url-issue:`55`
70+
* Django 2.0 support :url-issue:`55`
6271

6372
Bug fixes
6473
^^^^^^^^^
6574

66-
* Restored missing translation files :url-issue:`73`
75+
* Restored missing translation files :url-issue:`73`
6776

6877
Deprecations
6978
^^^^^^^^^^^^
7079

71-
* Django < 1.11 support is dropped :url-issue:`62`
72-
* Python < 3.4 support is dropped :url-issue:`65` and :url-issue:`68`
73-
* Deprecate ``django_nyt.urls.get_pattern``, use ``include('django_nyt.urls')`` instead :url-issue:`63`
74-
* Removed ``django_nyt.VERSION``, use `django_nyt.__version__` instead :url-issue:`73`
80+
* Django < 1.11 support is dropped :url-issue:`62`
81+
* Python < 3.4 support is dropped :url-issue:`65` and :url-issue:`68`
82+
* Deprecate ``django_nyt.urls.get_pattern``, use ``include('django_nyt.urls')`` instead :url-issue:`63`
83+
* Removed ``django_nyt.VERSION``, use `django_nyt.__version__` instead :url-issue:`73`
7584

7685
1.0
7786
---
@@ -87,25 +96,25 @@ You can switch off django-channels by setting
8796
New features
8897
^^^^^^^^^^^^
8998

90-
* Support for ``channels`` and web sockets. :url-issue:`21`
91-
* Django 1.9, 1.10, and 1.11 support :url-issue:`25`
92-
* Default AppConfig ``"django_nyt.apps.DjangoNytConfig"`` :url-issue:`57`
99+
* Support for ``channels`` and web sockets. :url-issue:`21`
100+
* Django 1.9, 1.10, and 1.11 support :url-issue:`25`
101+
* Default AppConfig ``"django_nyt.apps.DjangoNytConfig"`` :url-issue:`57`
93102

94103

95104
Bug fixes
96105
^^^^^^^^^
97106

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

107116

108117
Deprecations
109118
^^^^^^^^^^^^
110119

111-
* Django 1.5 and 1.6 support is dropped
120+
* Django 1.5 and 1.6 support is dropped

0 commit comments

Comments
 (0)