Skip to content

Commit

Permalink
Bump version (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeflander authored Jan 7, 2021
1 parent d9288ff commit 0821dbd
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This Go module provides a client for connector interactions with an Elimity Insi
package main

import (
"github.com/elimity-com/insights-client-go"
"github.com/elimity-com/insights-client-go/v2"
"time"
)

Expand All @@ -34,11 +34,12 @@ func main() {
## Installation

```sh
$ go get github.com/elimity-com/insights-client-go
$ go get github.com/elimity-com/insights-client-go/v2
```

## Compatibility

| Client version | Insights version |
| -------------- | ---------------- |
| 1 | 2.7 - 2.11 |
| 2 | 2.12 - 3.0 |
2 changes: 1 addition & 1 deletion client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"net/http/httptest"
"testing"

"github.com/elimity-com/insights-client-go"
"github.com/elimity-com/insights-client-go/v2"
)

func TestNewClientDisableTLSCertificateVerification(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion connectorlog_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"testing"
"time"

"github.com/elimity-com/insights-client-go"
"github.com/elimity-com/insights-client-go/v2"
)

func TestClientCreateConnectorLogs(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion domaingraph_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/elimity-com/insights-client-go"
"github.com/elimity-com/insights-client-go/v2"
"github.com/google/go-cmp/cmp"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/elimity-com/insights-client-go
module github.com/elimity-com/insights-client-go/v2

go 1.13

Expand Down

0 comments on commit 0821dbd

Please sign in to comment.