Skip to content

Commit

Permalink
Bump module to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Jan 15, 2025
1 parent 46831c7 commit 2e91570
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# CHANGELOG

## 2.0.0

* Upgrade to `github.com/oschwald/maxminddb-golang/v2`. This is a breaking
API change, but should not affect the use of the program.

## 0.2.0 (2024-01-10)

* Don't escape `&`, `<`, and `>` in JSON output
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ _We aim always to support the current and penultimate major releases of the Go c
The easiest way is via `go install`:

```bash
$ go install github.com/maxmind/mmdbinspect/cmd/mmdbinspect@latest
$ go install github.com/maxmind/mmdbinspect/v2/cmd/mmdbinspect@latest
```

This installs `mmdbinspect` to `$GOPATH/bin/mmdbinspect`.
Expand Down
2 changes: 1 addition & 1 deletion cmd/mmdbinspect/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"os"
"strings"

"github.com/maxmind/mmdbinspect/pkg/mmdbinspect"
"github.com/maxmind/mmdbinspect/v2/pkg/mmdbinspect"
)

type arrayFlags []string
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/maxmind/mmdbinspect
module github.com/maxmind/mmdbinspect/v2

go 1.23

Expand Down

0 comments on commit 2e91570

Please sign in to comment.