diff --git a/pyproject.toml b/pyproject.toml index 83caaf8..aef1eef 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "github-pokemon-collection" -version = "3.2" +version = "4" description = "" authors = ["2jun0 "] license = "MIT" diff --git a/src/setting.py b/src/setting.py index f8f9d8f..fcbaae6 100644 --- a/src/setting.py +++ b/src/setting.py @@ -12,7 +12,7 @@ class Envrionment(str, Enum): class Setting(BaseSettings): TITLE: str = "Github pokemon collection api" - VERSION: str = "3.2" + VERSION: str = "4" ENVIRONMENT: Envrionment = Envrionment.PRODUCTION