Commit fd210189 authored by Jakub Sztandera's avatar Jakub Sztandera

gx publish 0.1.7

parent 1de762d7
0.1.6: QmS2aqUZLJp8kF1ihE5rvDGE5LvmKDPnx32w9Z1BW9xLV5
0.1.7: QmRu7tiRnFk9mMPpVECQTBQJqXtmG132jJxA1w9A7TtpBz
......@@ -272,3 +272,6 @@ func (c *queryTestDS) Query(q dsq.Query) (dsq.Results, error) {
func (c *queryTestDS) Batch() (ds.Batch, error) {
return ds.NewBasicBatch(c), nil
}
func (c *queryTestDS) Close() error {
return nil
}
......@@ -148,6 +148,8 @@ func TestHasIsBloomCached(t *testing.T) {
}
}
var _ ds.Batching = (*callbackDatastore)(nil)
type callbackDatastore struct {
sync.Mutex
f func()
......@@ -186,6 +188,10 @@ func (c *callbackDatastore) GetSize(key ds.Key) (size int, err error) {
return c.ds.GetSize(key)
}
func (c *callbackDatastore) Close() error {
return nil
}
func (c *callbackDatastore) Delete(key ds.Key) (err error) {
c.CallF()
return c.ds.Delete(key)
......
......@@ -15,9 +15,9 @@
},
{
"author": "jbenet",
"hash": "Qmf4xQhNomPNhrtZc67qSnfJSjxjXs9LWvknJtSXwimPrM",
"hash": "QmUadX5EcvrBmxAV9sE7wUWtWSqxns5K84qKJBixmcT1w9",
"name": "go-datastore",
"version": "3.4.1"
"version": "3.6.1"
},
{
"author": "ipfs",
......@@ -39,9 +39,9 @@
},
{
"author": "hector",
"hash": "QmauEMWPoSqggfpSDHMMXuDn12DTd7TaFBvn39eeurzKT2",
"hash": "QmXx5R5qwsVxbhFogLNzU8A2tch9SZpJJgMUinfpHZsC9C",
"name": "go-ipfs-ds-help",
"version": "0.1.5"
"version": "0.1.6"
},
{
"author": "kubuxu",
......@@ -50,9 +50,9 @@
"version": "0.1.2"
},
{
"hash": "QmcuXC5cxs79ro2cUuHs4HQ2bkDLJUYokwL8aivcX6HW3C",
"hash": "QmbkT7eMTyXfpeyB3ZMxxcxg7XH8t6uXp49jqzz4HB7BGF",
"name": "go-log",
"version": "1.5.8"
"version": "1.5.9"
}
],
"gxVersion": "0.12.1",
......@@ -60,6 +60,6 @@
"license": "MIT",
"name": "go-ipfs-blockstore",
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "0.1.6"
"version": "0.1.7"
}
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