Unverified Commit 19b8f34d authored by Raúl Kripalani's avatar Raúl Kripalani Committed by GitHub

Merge pull request #98 from raulk/txn-err

Allow ds.NewTransaction() to return an error
parents a350e75f 86d1598b
3.2.0: QmUyz7JTJzgegC6tiJrfby3mPhzcdswVtG4x58TQ6pq8jV
3.3.0: QmbQshXLNcCPRUGZv4sBGxnZNAHREA6MKeomkwihNXPZWP
......@@ -165,7 +165,7 @@ type Txn interface {
type TxnDatastore interface {
Datastore
NewTransaction(readOnly bool) Txn
NewTransaction(readOnly bool) (Txn, error)
}
// Errors
......
......@@ -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"
}
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment