diff --git a/.github/contributors.json b/.github/contributors.json
index cbe2444ef..d3db1476f 100644
--- a/.github/contributors.json
+++ b/.github/contributors.json
@@ -1247,5 +1247,10 @@
"name": "Cebrail Yılmaz",
"github_login": "b1sar",
"twitter_username": ""
+ },
+ {
+ "name": "Artur Barseghyan",
+ "github_login": "barseghyanartur",
+ "twitter_username": ""
}
]
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8a07a72ab..3e88be236 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,11 @@ All enhancements and patches to Cookiecutter Django will be documented in this f
+## 2022.03.08
+
+### Updated
+- Update sentry-sdk to 1.5.7 ([#3624](https://github.com/cookiecutter/cookiecutter-django/pull/3624))
+
## 2022.03.03
### Updated
diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
index ca7d812dc..fd5156781 100644
--- a/CONTRIBUTORS.md
+++ b/CONTRIBUTORS.md
@@ -285,6 +285,13 @@ Listed in alphabetical order.
|
+
+ Artur Barseghyan |
+
+ barseghyanartur
+ |
+ |
+
AsheKR |
diff --git a/setup.py b/setup.py
index 9d796de4f..1b023704c 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ except ImportError:
from distutils.core import setup
# We use calendar versioning
-version = "2022.03.03"
+version = "2022.03.08"
with open("README.rst") as readme_file:
long_description = readme_file.read()
diff --git a/{{cookiecutter.project_slug}}/README.md b/{{cookiecutter.project_slug}}/README.md
index 227e24c00..969520961 100644
--- a/{{cookiecutter.project_slug}}/README.md
+++ b/{{cookiecutter.project_slug}}/README.md
@@ -20,7 +20,7 @@ Moved to [settings](http://cookiecutter-django.readthedocs.io/en/latest/settings
- To create a **normal user account**, just go to Sign Up and fill out the form. Once you submit it, you'll see a "Verify Your E-mail Address" page. Go to your console to see a simulated email verification message. Copy the link into your browser. Now the user's email should be verified and ready to go.
-- To create an **superuser account**, use this command:
+- To create a **superuser account**, use this command:
$ python manage.py createsuperuser
diff --git a/{{cookiecutter.project_slug}}/docs/howto.rst b/{{cookiecutter.project_slug}}/docs/howto.rst
index 0ef90d023..7f2d26a1e 100644
--- a/{{cookiecutter.project_slug}}/docs/howto.rst
+++ b/{{cookiecutter.project_slug}}/docs/howto.rst
@@ -28,7 +28,7 @@ Docstrings to Documentation
The sphinx extension `apidoc `_ is used to automatically document code using signatures and docstrings.
-Numpy or Google style docstrings will be picked up from project files and availble for documentation. See the `Napoleon `_ extension for details.
+Numpy or Google style docstrings will be picked up from project files and available for documentation. See the `Napoleon `_ extension for details.
For an in-use example, see the `page source <_sources/users.rst.txt>`_ for :ref:`users`.
diff --git a/{{cookiecutter.project_slug}}/requirements/production.txt b/{{cookiecutter.project_slug}}/requirements/production.txt
index ea528295f..84beaef72 100644
--- a/{{cookiecutter.project_slug}}/requirements/production.txt
+++ b/{{cookiecutter.project_slug}}/requirements/production.txt
@@ -12,7 +12,7 @@ mysqlclient==2.1.0 # https://github.com/PyMySQL/mysqlclient
Collectfast==2.2.0 # https://github.com/antonagestam/collectfast
{%- endif %}
{%- if cookiecutter.use_sentry == "y" %}
-sentry-sdk==1.5.6 # https://github.com/getsentry/sentry-python
+sentry-sdk==1.5.7 # https://github.com/getsentry/sentry-python
{%- endif %}
{%- if cookiecutter.use_docker == "n" and cookiecutter.windows == "y" %}
hiredis==2.0.0 # https://github.com/redis/hiredis-py
|