Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xingty committed Jun 30, 2024
1 parent 61f4382 commit 79a710c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mqgpt"
version = "0.1.0"
version = "0.1.1"
description = "A chatbot built on telegram that integrates OpenAI's API"
authors = [
{name = "bigbyto", email = "[email protected]"},
Expand Down
6 changes: 3 additions & 3 deletions src/catgpt/storage/sqlite3_session_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
from ..storage import Datasource, tx, Topic
from ..storage import types

CURRENT_VERSION = "0.1.0"
VERSION_CODE = 2406252000

VERSION = [
{"version_name": "0.1.0", "version_code": 2406252010, "sql_list": []},
{
Expand All @@ -22,6 +19,9 @@
},
]

CURRENT_VERSION = VERSION[-1]["version_name"]
VERSION_CODE = VERSION[-1]["version_code"]


def migrate(connection):
try:
Expand Down

0 comments on commit 79a710c

Please sign in to comment.