Skip to content

Commit

Permalink
Release v1.0.1 - Bump Codebase Version
Browse files Browse the repository at this point in the history
  • Loading branch information
App Generator committed Jan 17, 2022
1 parent 1124f8a commit f647330
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 13 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [1.0.1] 2022-01-17
### Improvements

- Bump Django Codebase to [v2.0.0](https://github.com/app-generator/boilerplate-code-django/releases)
- Dependencies update (all packages)
- Django==4.0.1
- Settings update for Django 4.x
- `New Parameter`: CSRF_TRUSTED_ORIGINS
- [Origin header checking isn`t performed in older versions](https://docs.djangoproject.com/en/4.0/ref/settings/#csrf-trusted-origins)

## [1.0.0] 2021-10-30
### Initial Release

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@

> Features
- `Up-to-date dependencies`: **Django 3.2.6 LTS**
- `Up-to-date dependencies`
- [SCSS compilation](#recompile-css) via **Gulp**
- UI Kit: **Material Dashboard - v3.0.0** (Bootstrap 5 Version) by **Creative-Tim**
- `DB Tools`: SQLite Database, Django Native ORM
- Session-Based Authentication, Forms validation
- Modular design, clean codebase
- `Session-Based Authentication`, Forms validation
- `Deployment`: **Docker**, Gunicorn / Nginx
- Support via **Github** (issues tracker) and [Discord](https://discord.gg/fZC6hup).
- Support via **Github** and [Discord](https://discord.gg/fZC6hup).

<br />

Expand Down
2 changes: 1 addition & 1 deletion apps/templates/includes/navigation-transparent.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h6 class="dropdown-header text-dark font-weight-bolder d-flex align-items-cente
</a>
</li>
<li class="nav-item my-auto ms-3 ms-lg-0">
<a href="https://appseed.us/django/django-material-kit"
<a href="https://appseed.us/product/django-material-kit"
target="_blank"
class="btn btn-sm bg-gradient-primary mb-0 me-1 mt-2 mt-md-0">Download</a>
</li>
Expand Down
2 changes: 1 addition & 1 deletion apps/templates/includes/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ <h6 class="dropdown-header text-dark font-weight-bolder d-flex align-items-cente
</a>
</li>
<li class="nav-item my-auto ms-3 ms-lg-0">
<a href="https://appseed.us/django/django-material-kit"
<a href="https://appseed.us/product/django-material-kit"
target="_blank"
class="btn btn-sm bg-gradient-primary mb-0 me-1 mt-2 mt-md-0">Download</a>
</li>
Expand Down
3 changes: 2 additions & 1 deletion core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
DEBUG = config('DEBUG', default=True, cast=bool)

# load production server from .env
ALLOWED_HOSTS = ['localhost', '127.0.0.1', config('SERVER', default='127.0.0.1')]
ALLOWED_HOSTS = ['localhost', 'localhost:85', '127.0.0.1', config('SERVER', default='127.0.0.1')]
CSRF_TRUSTED_ORIGINS = ['http://localhost:85', 'http://127.0.0.1', 'https://' + config('SERVER', default='127.0.0.1')]

# Application definition

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "django-material-kit",
"mastertemplate": "boilerplate-code-django",
"version": "1.0.0",
"version": "1.0.1",
"description": "Template project - Django Boilerplate Code",
"scripts": {},
"repository": {
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
asgiref==3.4.1
autopep8==1.5.7
autopep8==1.6.0
dj-database-url==0.5.0
Django==3.2.6
Django==4.0.1
gunicorn==20.1.0
pycodestyle==2.7.0
python-decouple==3.4
pytz==2021.1
pycodestyle==2.8.0
python-decouple==3.5
pytz==2021.3
sqlparse==0.4.2
toml==0.10.2
Unipath==1.1
Expand Down

0 comments on commit f647330

Please sign in to comment.