Skip to content

Commit

Permalink
version change
Browse files Browse the repository at this point in the history
  • Loading branch information
ADIMANV committed Sep 24, 2024
1 parent b23927b commit bfdd1dc
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/india_api/cmd/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

import uvicorn
import sentry_sdk
import version

from india_api import internal
from india_api.internal.config import Config
from india_api.internal.service import get_db_client, server
__version__ = "0.1.37"
=

cfg = Config()

Expand All @@ -17,7 +18,7 @@
)

sentry_sdk.set_tag("app_name", "india_api")
sentry_sdk.set_tag("version",__version__)
sentry_sdk.set_tag("version",version.__version__)


match cfg.SOURCE:
Expand Down

0 comments on commit bfdd1dc

Please sign in to comment.