Skip to content

Commit

Permalink
Bump to v14
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamSLevy committed Feb 18, 2020
1 parent 1429ace commit 314a45a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
# github.com/AdamSLevy/jsonrpc2/v13
# github.com/AdamSLevy/jsonrpc2/v14
[![GoDoc](https://godoc.org/github.com/AdamSLevy/jsonrpc2?status.svg)](https://godoc.org/github.com/AdamSLevy/jsonrpc2)
[![Go Report Card](https://goreportcard.com/badge/github.com/AdamSLevy/jsonrpc2)](https://goreportcard.com/report/github.com/AdamSLevy/jsonrpc2)
[![Coverage Status](https://coveralls.io/repos/github/AdamSLevy/jsonrpc2/badge.svg?branch=master)](https://coveralls.io/github/AdamSLevy/jsonrpc2?branch=master)
Expand Down
4 changes: 1 addition & 3 deletions example_test.go
Expand Up @@ -30,9 +30,7 @@ import (
"net/http"
"os"

// Specify the package name to avoid goimports from reverting this
// import to an older version.
jsonrpc2 "github.com/AdamSLevy/jsonrpc2/v13"
"github.com/AdamSLevy/jsonrpc2/v14"
)

var endpoint = "http://localhost:18888"
Expand Down
7 changes: 2 additions & 5 deletions go.mod
@@ -1,8 +1,5 @@
module github.com/AdamSLevy/jsonrpc2/v13
module github.com/AdamSLevy/jsonrpc2/v14

go 1.13

require (
github.com/AdamSLevy/jsonrpc2/v12 v12.0.1
github.com/stretchr/testify v1.4.0
)
require github.com/stretchr/testify v1.4.0
2 changes: 0 additions & 2 deletions go.sum
@@ -1,5 +1,3 @@
github.com/AdamSLevy/jsonrpc2/v12 v12.0.1 h1:cVyqoBa4Qgw8bQj3vCBnZHOX/E+uvPM8TbQPobGwY8Q=
github.com/AdamSLevy/jsonrpc2/v12 v12.0.1/go.mod h1:UUmIu8A7Sjw+yI0tIc/iGQHoSu/7loifZ7E/AbjFFcI=
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
3 changes: 1 addition & 2 deletions request_test.go
Expand Up @@ -18,12 +18,11 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.

package jsonrpc2_test
package jsonrpc2

import (
"testing"

. "github.com/AdamSLevy/jsonrpc2/v12"
"github.com/stretchr/testify/assert"
)

Expand Down
3 changes: 1 addition & 2 deletions response_test.go
Expand Up @@ -18,12 +18,11 @@
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.

package jsonrpc2_test
package jsonrpc2

import (
"testing"

. "github.com/AdamSLevy/jsonrpc2/v12"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 314a45a

Please sign in to comment.