Skip to content

Commit

Permalink
Hotfix 0.1.41
Browse files Browse the repository at this point in the history
Hotfix 0.1.41
  • Loading branch information
ycd authored Aug 16, 2020
2 parents 432d6bf + 4698c5c commit 03d52f7
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,11 @@ fastproject/

### Latest Changes

### 0.1.41

* Quick fix for a little bug


### 0.1.4

* Changed project architecture
Expand Down
6 changes: 6 additions & 0 deletions docs/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

### Latest Changes


### 0.1.41

* Quick fix for a little bug


### 0.1.4

* Changed project architecture
Expand Down
2 changes: 1 addition & 1 deletion manage_fastapi/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.4"
__version__ = "0.1.41"
2 changes: 1 addition & 1 deletion manage_fastapi/tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_version():
assert __version__ == "0.1.4"
assert __version__ == "0.1.41"
6 changes: 1 addition & 5 deletions manage_fastapi/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down Expand Up @@ -155,11 +156,6 @@ def select_database():


# TODO


# TODO


# def run_server(server: str = ("uvicorn")):
# import os
# import subprocess
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 03d52f7

Please sign in to comment.