diff --git a/README.md b/README.md index 028796f..c26fddb 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,11 @@ fastproject/ ### Latest Changes +### 0.1.41 + +* Quick fix for a little bug + + ### 0.1.4 * Changed project architecture diff --git a/docs/release-notes.md b/docs/release-notes.md index 84e5d31..dfefc5e 100644 --- a/docs/release-notes.md +++ b/docs/release-notes.md @@ -2,6 +2,12 @@ ### Latest Changes + +### 0.1.41 + +* Quick fix for a little bug + + ### 0.1.4 * Changed project architecture diff --git a/manage_fastapi/__init__.py b/manage_fastapi/__init__.py index bbab024..6e862d0 100644 --- a/manage_fastapi/__init__.py +++ b/manage_fastapi/__init__.py @@ -1 +1 @@ -__version__ = "0.1.4" +__version__ = "0.1.41" diff --git a/manage_fastapi/tests/test_version.py b/manage_fastapi/tests/test_version.py index beed6fe..9e1c184 100644 --- a/manage_fastapi/tests/test_version.py +++ b/manage_fastapi/tests/test_version.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == "0.1.4" + assert __version__ == "0.1.41" diff --git a/manage_fastapi/utils.py b/manage_fastapi/utils.py index 827d90b..5065182 100644 --- a/manage_fastapi/utils.py +++ b/manage_fastapi/utils.py @@ -31,6 +31,7 @@ def start_project( parents=True, exist_ok=False ) Path(f"{current_path}/{project_name}/__init__.py").touch() + Path(f"{current_path}/{project_name}/core/__init__.py").touch() Path(f"{current_path}/{project_name}/tests/__init__.py").touch() Path(f"{current_path}/{project_name}/core/schemas/__init__.py").touch() @@ -155,11 +156,6 @@ def select_database(): # TODO - - -# TODO - - # def run_server(server: str = ("uvicorn")): # import os # import subprocess diff --git a/pyproject.toml b/pyproject.toml index 356e0d1..efe8c68 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "manage-fastapi" -version = "0.1.4" +version = "0.1.41" description = "Managing FastAPI projects made easy." authors = ["ycd "] readme = "README.md"