Skip to content

Commit

Permalink
Merge pull request #87 from sebastienbarbier/develop
Browse files Browse the repository at this point in the history
Release v1.3.1
  • Loading branch information
sebastienbarbier committed May 10, 2023
2 parents a8497d4 + 0d36f19 commit 83b5bff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions seven23/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__))
Expand Down Expand Up @@ -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',)

Expand Down

0 comments on commit 83b5bff

Please sign in to comment.