From 94d0d53a3e9451c846f7f0df0901c241584c1dfc Mon Sep 17 00:00:00 2001 From: 2jun0 Date: Sat, 13 Jul 2024 12:37:07 +0900 Subject: [PATCH] Version up to 4 --- pyproject.toml | 2 +- src/setting.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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