Skip to content

Commit 2e91570

Browse files
committed
Bump module to v2
1 parent 46831c7 commit 2e91570

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## 2.0.0
4+
5+
* Upgrade to `github.com/oschwald/maxminddb-golang/v2`. This is a breaking
6+
API change, but should not affect the use of the program.
7+
38
## 0.2.0 (2024-01-10)
49

510
* Don't escape `&`, `<`, and `>` in JSON output

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ _We aim always to support the current and penultimate major releases of the Go c
8787
The easiest way is via `go install`:
8888

8989
```bash
90-
$ go install github.com/maxmind/mmdbinspect/cmd/mmdbinspect@latest
90+
$ go install github.com/maxmind/mmdbinspect/v2/cmd/mmdbinspect@latest
9191
```
9292

9393
This installs `mmdbinspect` to `$GOPATH/bin/mmdbinspect`.

cmd/mmdbinspect/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"os"
1010
"strings"
1111

12-
"github.com/maxmind/mmdbinspect/pkg/mmdbinspect"
12+
"github.com/maxmind/mmdbinspect/v2/pkg/mmdbinspect"
1313
)
1414

1515
type arrayFlags []string

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/maxmind/mmdbinspect
1+
module github.com/maxmind/mmdbinspect/v2
22

33
go 1.23
44

0 commit comments

Comments
 (0)