Skip to content

Commit

Permalink
version: 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joonas-yoon committed Dec 23, 2022
1 parent 4734335 commit 14a1f53
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "json_as_db"
version = "0.0.2b2"
version = "0.1.0"
description = "Using JSON as very lightweight database"
readme = "README.md"
license = "MIT"
Expand Down Expand Up @@ -30,7 +30,7 @@ exclude = [
]

[tool.poetry.dependencies]
python = ">=3.6"
python = ">=3.7,<4.0"
aiofiles = ">=22.1.0"

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/json_as_db/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
from .Client import Client
from .Database import Database

__version__ = '0.1.0'

__all__ = [
"Client",
"Database"
Expand Down

0 comments on commit 14a1f53

Please sign in to comment.