diff --git a/CHANGELOG.md b/CHANGELOG.md index 656b539..86d8f64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). See for sample https://raw.githubusercontent.com/favoloso/conventional-changelog-emoji/master/CHANGELOG.md --> +## [1.3.1] - 2023-05-10 +### 🔒 Security +- Bump django from 4.1.8 to 4.1.9 (#85) +### 🐛 Bug Fixes +- Fix crash settings if debug false (#86) + ## [1.3.0] - 2023-05-09 ### 🛠 Improvements - Apply **auto_sync settings for all accounts** instead of individual one (#81) diff --git a/docs/conf.py b/docs/conf.py index c44d0f3..cdae9a7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -67,7 +67,7 @@ # The short X.Y version. version = '1.3' # The full version, including alpha/beta/rc tags. -release = '1.3.0' +release = '1.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/requirements.txt b/requirements.txt index ee6c7d4..7475b81 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,7 +12,7 @@ cryptography==40.0.2 defusedxml==0.7.1 dj-database-url==1.3.0 dj-rest-auth==3.0.0 -Django==4.1.8 +Django==4.1.9 django-allauth==0.54.0 django-appconf==1.0.5 django-colorfield==0.8.0 diff --git a/seven23/settings.py b/seven23/settings.py index 7e7656d..32c6c0d 100644 --- a/seven23/settings.py +++ b/seven23/settings.py @@ -30,7 +30,7 @@ integrations=[DjangoIntegration()] ) -VERSION = [1, 3, 0] +VERSION = [1, 3, 1] API_VERSION = [1, 0, 0] BASE_DIR = os.path.dirname(os.path.dirname(__file__)) @@ -104,7 +104,7 @@ STATIC_URL = f'https://{AWS_S3_CUSTOM_DOMAIN}/{AWS_LOCATION}/' STATICFILES_STORAGE = 'storages.backends.s3boto3.S3Boto3Storage' STATIC_ROOT = os.path.join(BASE_DIR, 'collectstatic') -elif not DEBUG or os.environ.get('STORAGE').lower() == 'whitenoise': +elif not DEBUG or os.environ.get('STORAGE', '').lower() == 'whitenoise': STATICFILES_STORAGE = 'whitenoise.storage.CompressedStaticFilesStorage' MIDDLEWARE = MIDDLEWARE + ('whitenoise.middleware.WhiteNoiseMiddleware',)