Skip to content

Commit

Permalink
Merge pull request #7 from mind-network/dev
Browse files Browse the repository at this point in the history
v1.0.6 release
  • Loading branch information
dennis-mind authored Jul 7, 2023
2 parents 8c7b981 + d4190d9 commit 984737d
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ Full doc: [https://mind-network.gitbook.io/mind-lake-sdk](https://mind-network.g
* Improve performances
* v1.0.5
* Keep up the version number with TypeScript SDK
* v1.0.6
* Add support for Mind DataPack

## License

Expand Down
4 changes: 3 additions & 1 deletion mindlakesdk/datalake.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ def dropCocoon(self, cocoonName: str) -> ResultType:

def dropTable(self, tableName: str) -> ResultType:
return mindlakesdk.message.sendDropTable(self.__session, tableName)


def queryForDataAndMeta(self, executeSql: str) -> ResultType:
return mindlakesdk.message.sendQueryForDataAndMeta(self.__session, executeSql)
4 changes: 4 additions & 0 deletions mindlakesdk/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,10 @@ def sendQuery(session: Session, executeSql) -> ResultType:
data = {"bizType":114, 'executeSql': executeSql}
return __requestCommon(session, data)

def sendQueryForDataAndMeta(session: Session, executeSql) -> ResultType:
data = {"bizType":113, 'executeSql': executeSql}
return __requestCommon(session, data)

def sendDropCocoon(session: Session, cocoonName: str) -> ResultType:
data = {"bizType":129, 'cocoonName': cocoonName}
return __requestCommon(session, data)
Expand Down
2 changes: 1 addition & 1 deletion mindlakesdk/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@
"type": "function"
}
]
VERSION = 'v1.0.5'
VERSION = 'v1.0.6'
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "mindlakesdk"
version = "v1.0.5"
version = "v1.0.6"
authors = [
{ name="Mind Labs", email="biz@mindnetwork.xyz" },
]
Expand Down

0 comments on commit 984737d

Please sign in to comment.