Skip to content

Commit

Permalink
Release v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
IHosseini083 committed Sep 27, 2022
1 parent 970c631 commit 400a796
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
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 = "shortify"
version = "0.0.8"
version = "0.0.9"
description = "Shortify is a URL shortener RESTful API built with Python and FastAPI."
authors = ["Iliya <IHosseini083@gmail.com>"]
license = "GPL-3.0-only"
Expand Down
2 changes: 1 addition & 1 deletion shortify/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.8"
__version__ = "0.0.9"
2 changes: 1 addition & 1 deletion shortify/app/core/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Settings(BaseSettings):
# Application
PROJECT_NAME: str = "Shortify"
PROJECT_VERSION: str = "0.0.8"
PROJECT_VERSION: str = "0.0.9"
API_V1_STR: str = "v1"
DEBUG: bool = True
BACKEND_CORS_ORIGINS: Union[str, List[AnyHttpUrl]] = []
Expand Down

0 comments on commit 400a796

Please sign in to comment.