diff --git a/app/config.py b/app/config.py index 444d1ba..f30eb93 100644 --- a/app/config.py +++ b/app/config.py @@ -9,7 +9,7 @@ import os from dataclasses import dataclass, field -APP_VERSION = "1.0.0" +APP_VERSION = "1.0.1" DEFAULT_EMPTY_RESPONSE = "call this tool `get_user_request` again to fetch latest user input..." diff --git a/go-server/internal/config/config.go b/go-server/internal/config/config.go index 54eb8a1..3e7ce16 100644 --- a/go-server/internal/config/config.go +++ b/go-server/internal/config/config.go @@ -7,7 +7,7 @@ import ( ) const ( - AppVersion = "1.0.0" + AppVersion = "1.0.1" DefaultEmptyResponse = "call this tool `get_user_request` again to fetch latest user input..." )