Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
release 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aavshr committed Jul 18, 2023
1 parent 33b6312 commit e804aec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
except ImportError:
pass

__version__ = "1.1.0"

__version__ = "1.2.0"


def Base(name: str):
Expand All @@ -45,6 +44,7 @@ def Base(self, name: str, host: str = None):

def AsyncBase(self, name: str, host: str = None):
from ._async.client import _AsyncBase

return _AsyncBase(name, self.project_key, self.project_id, host)

def Drive(self, name: str, host: str = None):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="deta",
version="1.1.0",
version="1.2.0",
description="Python SDK for Deta Base & Deta Drive.",
url="http://github.com/deta/deta-python",
author="Deta",
Expand Down

0 comments on commit e804aec

Please sign in to comment.