From d540f7449e9c49a672e660af86c66589dbee9ab3 Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 10 Feb 2023 03:25:12 +0100 Subject: [PATCH 1/2] test: use two nodes in publish This spin up online nodes instead of offline ones. --- tests/routing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/routing.go b/tests/routing.go index 14e0d2e..6428748 100644 --- a/tests/routing.go +++ b/tests/routing.go @@ -70,7 +70,7 @@ func (tp *TestSuite) TestRoutingGet(t *testing.T) { func (tp *TestSuite) TestRoutingPut(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() - apis, err := tp.MakeAPISwarm(ctx, true, 1) + apis, err := tp.MakeAPISwarm(ctx, true, 2) if err != nil { t.Fatal(err) } @@ -85,7 +85,7 @@ func (tp *TestSuite) TestRoutingPut(t *testing.T) { } // Put routing value. - err = apis[0].Routing().Put(ctx, "/ipns/"+ipnsEntry.Name(), data) + err = apis[1].Routing().Put(ctx, "/ipns/"+ipnsEntry.Name(), data) if err != nil { t.Fatal(err) } From 71aeeafab9f20916b232c96ef5a0a5035e97efc8 Mon Sep 17 00:00:00 2001 From: Jorropo Date: Fri, 10 Feb 2023 03:25:56 +0100 Subject: [PATCH 2/2] chore: release v0.11.1 --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index ea22ea5..5a4e9a5 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "v0.11.0" + "version": "v0.11.1" }