Skip to content

Commit 14a1f53

Browse files
committed
version: 0.1.0
1 parent 4734335 commit 14a1f53

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "json_as_db"
3-
version = "0.0.2b2"
3+
version = "0.1.0"
44
description = "Using JSON as very lightweight database"
55
readme = "README.md"
66
license = "MIT"
@@ -30,7 +30,7 @@ exclude = [
3030
]
3131

3232
[tool.poetry.dependencies]
33-
python = ">=3.6"
33+
python = ">=3.7,<4.0"
3434
aiofiles = ">=22.1.0"
3535

3636
[tool.poetry.dev-dependencies]

src/json_as_db/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from .Client import Client
22
from .Database import Database
33

4+
__version__ = '0.1.0'
5+
46
__all__ = [
57
"Client",
68
"Database"

0 commit comments

Comments
 (0)