diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ff15ea2..ee035e9 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,28 @@ Changelog ========= + +0.6.1 (2024-07-31) +------------------ + +**Project maintenance and QOL** + +* Updated dependencies: + - django ``4.2.11+`` to ``4.2.14+`` + - django-axes ``6.3.0+`` to ``6.5.1+`` + - django-cors-headers ``4.3.1+`` to ``4.4.0+`` + - django-jsonform ``2.21.4+`` to ``2.22.0+`` + - djangorestframework ``3.12.4+`` to ``3.15.2+`` + - django-filter ``23.2+`` to ``24.2+`` + - drf-spectacular ``0.27.0+`` to ``0.27.2+`` + - mozilla-django-oidc-db ``0.14.1+`` to ``0.19.0+`` + - requests ``2.31.0+`` to ``2.32.3+`` + - sentry-sdk ``1.39.2+`` to ``2.11.0+`` + - elastic-apm ``6.20.0+`` to ``6.22.0+`` + - celery ``5.2.7+`` to ``5.4.0+`` + - maykin-2fa ``1.0.0+`` to ``1.0.1+`` + + 0.6.0 (2024-07-04) ------------------ diff --git a/docs/conf.py b/docs/conf.py index 5dcfe95..8754ab1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ author = "Maykin Media" # The full version, including alpha/beta/rc tags -release = "0.6.0" +release = "0.6.1" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index c61dc00..ca6ec66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "open_api_framework" -version = "0.6.0" +version = "0.6.1" description = "A metapackage for registration components, that bundles the dependencies shared between these components and provides generic settings" authors = [ {name = "Maykin Media", email = "support@maykinmedia.nl"} @@ -27,33 +27,33 @@ classifiers = [ ] requires-python = ">=3.9" dependencies = [ - "django>=4.2.11", - "django-axes>=6.3.0", - "django-cors-headers>=4.3.1", + "django>=4.2.14,<5.0.0", + "django-axes>=6.5.1", + "django-cors-headers>=4.4.0", "django-markup>=1.8.1", - "django-jsonform>=2.21.4", + "django-jsonform>=2.22.0", "django-log-outgoing-requests>=0.6.1", "django-admin-index>=3.1.0", "django-redis>=5.4.0", - "djangorestframework>=3.12.4", + "djangorestframework>=3.15.2", "djangorestframework-gis>=1.0", - "django-filter>=23.2", - "drf-spectacular>=0.27.0", + "django-filter>=24.2", + "drf-spectacular>=0.27.2", "djangorestframework-inclusions>=1.2.0", "commonground-api-common>=1.12.1", - "mozilla-django-oidc-db>=0.14.1", + "mozilla-django-oidc-db>=0.19.0", "zgw-consumers>=0.27.0", "psycopg2>=2.9.9", "bleach>=6.1.0", "python-dotenv>=1.0.0", "python-decouple>=3.8", - "requests>=2.31.0", + "requests>=2.32.3", "uwsgi>=2.0.23", - "sentry-sdk>=1.39.2", - "elastic-apm>=6.20.0", - "celery>=5.2.7", + "sentry-sdk>=2.11.0", + "elastic-apm>=6.22.0", + "celery>=5.4.0", "flower>=2.0.1", - "maykin-2fa>=1.0.0", + "maykin-2fa>=1.0.1", "django-setup-configuration>=0.1.0", ] @@ -100,7 +100,7 @@ testpaths = ["tests"] DJANGO_SETTINGS_MODULE = "testapp.settings" [tool.bumpversion] -current_version = "0.6.0" +current_version = "0.6.1" files = [ {filename = "pyproject.toml"}, {filename = "README.rst"},