diff --git a/pyproject.toml b/pyproject.toml index e9d2fa0..33848a4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "github-pokemon-collection" -version = "1" +version = "2" description = "" authors = ["2jun0 "] license = "MIT" diff --git a/src/setting.py b/src/setting.py index eaa4c11..1599bce 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 = "1" + VERSION: str = "2" ENVIRONMENT: Envrionment = Envrionment.PRODUCTION