Skip to content

Commit db69f33

Browse files
author
App Generator
committed
Release v1.0.6 - Rename User model to Users
1 parent 2e52a37 commit db69f33

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change Log
22

3+
## [1.0.6] 2021-09-16
4+
### Improvements
5+
6+
- Bump Flask Codebase to [v1.0.7](https://github.com/app-generator/boilerplate-code-flask/releases)
7+
- Rename model `User` to `Users` to avoid name conflict with ORACLE DBMS
8+
- Impacted files: `app/{model.py, util.py, viewws.py}`
9+
310
## [1.0.5] 2021-09-16
411
### Improvements & Fixes
512

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ The project has a super simple structure, represented as bellow:
7777
```bash
7878
< PROJECT ROOT >
7979
|
80-
|-- app/__init__.py
8180
|-- app/
8281
| |-- static/
8382
| | |-- <css, JS, images> # CSS files, Javascripts files
@@ -105,7 +104,11 @@ The project has a super simple structure, represented as bellow:
105104
| | |-- index.html # Index page
106105
| | |-- 404-page.html # 404 page
107106
| | |-- *.html # All other pages
108-
|
107+
| |
108+
| config.py # Provides APP Configuration
109+
| forms.py # Defines Forms (login, register)
110+
| models.py # Defines app models
111+
| views.py # Application Routes
109112
|
110113
|-- Dockerfile # Deployment
111114
|-- docker-compose.yml # Deployment

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "flask-pixel-lite",
33
"mastertemplate": "boilerplate-code-flask",
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"description": "Template project - Flask Boilerplate Code",
66
"scripts": {},
77
"repository": {

0 commit comments

Comments
 (0)