From cc278e63708881f0843a486360d38d4d752c4347 Mon Sep 17 00:00:00 2001 From: 2jun0 Date: Tue, 30 Apr 2024 18:51:05 +0900 Subject: [PATCH] version 2 --- pyproject.toml | 2 +- src/setting.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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