1
0
mirror of https://github.com/ycd/manage-fastapi.git synced 2021-11-08 01:34:39 +03:00

add updates for release 0.1.60

This commit is contained in:
yagiz
2020-11-06 01:00:01 +03:00
parent 7579e3ac2f
commit 06bb3581c4
4 changed files with 18 additions and 7 deletions

View File

@@ -88,6 +88,12 @@ fastproject/
### Latest Changes
### 0.1.60
* Delete run-server command
* Delete show-models command
* Create new template for settings without database
* Small fix for project utils
### 0.1.52

View File

@@ -2,12 +2,17 @@
### Latest Changes
### 0.1.5
### 0.1.60
* Added showmodels
* Added runserver
* Fix little bugs
* Update docs
* Delete run-server command
* Delete show-models command
* Create new template for settings without database
* Small fix for project utils
### 0.1.52
* Temporary fix for Path issue when running with uvicorn
### 0.1.51

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "manage-fastapi"
version = "0.1.52"
version = "0.1.60"
description = "Managing FastAPI projects made easy."
authors = ["ycd <yagizcanilbey1903@gmail.com>"]
readme = "README.md"

View File

@@ -2,4 +2,4 @@ from manage_fastapi import __version__
def test_version():
assert __version__ == "0.1.52"
assert __version__ == "0.1.60"