Skip to content

Commit

Permalink
Merge pull request #8 from gaker/set-v2
Browse files Browse the repository at this point in the history
  • Loading branch information
evanoberholster committed May 25, 2022
2 parents bde0a78 + 5841e35 commit c479c02
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cmd/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ package main
import (
"fmt"

timezone "github.com/evanoberholster/timezoneLookup@v2.0.0"
timezone "github.com/evanoberholster/timezoneLookup/v2"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"syscall"
"time"

timezone "github.com/evanoberholster/timezoneLookup"
timezone "github.com/evanoberholster/timezoneLookup/v2"
)

var (
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/evanoberholster/timezoneLookup
module github.com/evanoberholster/timezoneLookup/v2

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion import.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/evanoberholster/timezoneLookup/geo"
"github.com/evanoberholster/timezoneLookup/v2/geo"
"github.com/klauspost/compress/zip"
)

Expand Down
2 changes: 1 addition & 1 deletion timezone.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"syscall"
"time"

"github.com/evanoberholster/timezoneLookup/geo"
"github.com/evanoberholster/timezoneLookup/v2/geo"
"golang.org/x/sys/unix"
)

Expand Down

0 comments on commit c479c02

Please sign in to comment.