From 39c949cfb974103ab503789355aa341af45b00ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Mon, 24 Sep 2018 15:06:38 +0100 Subject: [PATCH 1/2] return error when creating tx. --- datastore.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datastore.go b/datastore.go index b003198..63263ed 100644 --- a/datastore.go +++ b/datastore.go @@ -165,7 +165,7 @@ type Txn interface { type TxnDatastore interface { Datastore - NewTransaction(readOnly bool) Txn + NewTransaction(readOnly bool) (Txn, error) } // Errors From 86d1598b92d07a360acc12e97d8fdd6af70d6ece Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Mon, 24 Sep 2018 15:07:13 +0100 Subject: [PATCH 2/2] gx publish 3.3.0 --- .gx/lastpubver | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gx/lastpubver b/.gx/lastpubver index cfe953b..9638fb7 100644 --- a/.gx/lastpubver +++ b/.gx/lastpubver @@ -1 +1 @@ -3.2.0: QmUyz7JTJzgegC6tiJrfby3mPhzcdswVtG4x58TQ6pq8jV +3.3.0: QmbQshXLNcCPRUGZv4sBGxnZNAHREA6MKeomkwihNXPZWP diff --git a/package.json b/package.json index 1e3e3e3..64f2ea2 100644 --- a/package.json +++ b/package.json @@ -37,6 +37,6 @@ "license": "MIT", "name": "go-datastore", "releaseCmd": "git commit -a -m \"gx publish $VERSION\"", - "version": "3.2.0" + "version": "3.3.0" }