Skip to content

Commit fea0c8e

Browse files
Merge pull request #83 from edx/iamsobanjaved/jsonfield
feat: switch to jsonfield from jsonfield2
2 parents 8554156 + f6465eb commit fea0c8e

File tree

7 files changed

+12
-18
lines changed

7 files changed

+12
-18
lines changed

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Unreleased
1515
~~~~~~~~~~
1616
*
1717

18+
[1.1.1] - 2021-08-24
19+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20+
* Replacing jsonfield2 with jsonfield as the former is merged back into the latter one.
21+
1822
[1.1.0] - 2021-07-07
1923
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2024
* Added support for django 3.1 and 3.2

celery_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Code to support working with celery.
33
"""
44

5-
__version__ = '1.1.0'
5+
__version__ = '1.1.1'
66

77
default_app_config = 'celery_utils.apps.CeleryUtilsConfig' # pylint: disable=invalid-name

requirements/base.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ future
66
celery
77
Django >= 1.11
88
django-model-utils
9-
jsonfield2
9+
jsonfield

requirements/base.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ django==2.2.24
3030
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
3131
# -r requirements/base.in
3232
# django-model-utils
33-
# jsonfield2
33+
# jsonfield
3434
django-model-utils==4.1.1
3535
# via -r requirements/base.in
3636
future==0.18.2
3737
# via -r requirements/base.in
38-
jsonfield2==4.0.0.post0
38+
jsonfield==3.1.0
3939
# via -r requirements/base.in
4040
kombu==5.1.0
4141
# via celery

requirements/dev.txt

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ bleach==4.1.0
1414
# via readme-renderer
1515
certifi==2021.5.30
1616
# via requests
17-
cffi==1.14.6
18-
# via cryptography
1917
chardet==4.0.0
2018
# via diff-cover
2119
charset-normalizer==2.0.6
@@ -67,10 +65,6 @@ isort==5.9.3
6765
# via
6866
# -r requirements/quality.in
6967
# pylint
70-
jeepney==0.7.1
71-
# via
72-
# keyring
73-
# secretstorage
7468
jinja2==3.0.1
7569
# via
7670
# code-annotations
@@ -114,8 +108,6 @@ py==1.10.0
114108
# via tox
115109
pycodestyle==2.7.0
116110
# via -r requirements/quality.in
117-
pycparser==2.20
118-
# via cffi
119111
pydocstyle==3.0.0
120112
# via -r requirements/quality.in
121113
pygments==2.10.0
@@ -156,8 +148,6 @@ requests-toolbelt==0.9.1
156148
# via twine
157149
rfc3986==1.5.0
158150
# via twine
159-
secretstorage==3.3.1
160-
# via keyring
161151
six==1.16.0
162152
# via
163153
# bleach

requirements/doc.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ django==2.2.24
4040
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
4141
# -r requirements/base.in
4242
# django-model-utils
43-
# jsonfield2
43+
# jsonfield
4444
django-model-utils==4.1.1
4545
# via -r requirements/base.in
4646
doc8==0.9.1
@@ -61,7 +61,7 @@ imagesize==1.2.0
6161
# via sphinx
6262
jinja2==3.0.1
6363
# via sphinx
64-
jsonfield2==4.0.0.post0
64+
jsonfield==3.1.0
6565
# via -r requirements/base.in
6666
kombu==5.1.0
6767
# via celery

requirements/test.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ddt==1.4.3
3232
# -c https://raw.githubusercontent.com/edx/edx-lint/master/edx_lint/files/common_constraints.txt
3333
# -r requirements/base.in
3434
# django-model-utils
35-
# jsonfield2
35+
# jsonfield
3636
django-model-utils==4.1.1
3737
# via -r requirements/base.in
3838
freezegun==1.1.0
@@ -41,7 +41,7 @@ future==0.18.2
4141
# via -r requirements/base.in
4242
iniconfig==1.1.1
4343
# via pytest
44-
jsonfield2==4.0.0.post0
44+
jsonfield==3.1.0
4545
# via -r requirements/base.in
4646
# via celery
4747
mock==4.0.3

0 commit comments

Comments
 (0)