Skip to content

Commit

Permalink
Versioning is not working !
Browse files Browse the repository at this point in the history
  • Loading branch information
barbacbd committed Dec 2, 2022
1 parent d8581a4 commit 5553fae
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
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/barbacbd/nautical/v1
module github.com/barbacbd/nautical

go 1.18

Expand Down
4 changes: 2 additions & 2 deletions pkg/cache/cache_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"testing"
"time"

noaa "github.com/barbacbd/nautical/v1/pkg/noaa/buoy"
nt "github.com/barbacbd/nautical/v1/pkg/time"
noaa "github.com/barbacbd/nautical/pkg/noaa/buoy"
nt "github.com/barbacbd/nautical/pkg/time"
)

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

noaa "github.com/barbacbd/nautical/v1/pkg/noaa/buoy"
noaa "github.com/barbacbd/nautical/pkg/noaa/buoy"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/location/point.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strconv"
"strings"

"github.com/barbacbd/nautical/v1/pkg/units"
"github.com/barbacbd/nautical/pkg/units"

"github.com/umahmood/haversine"
)
Expand Down
4 changes: 2 additions & 2 deletions pkg/noaa/buoy/buoy.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"strconv"
"strings"

"github.com/barbacbd/nautical/v1/pkg/io"
"github.com/barbacbd/nautical/v1/pkg/location"
"github.com/barbacbd/nautical/pkg/io"
"github.com/barbacbd/nautical/pkg/location"

"github.com/anaskhan96/soup"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/noaa/buoy/buoy_data.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"time"

nt "github.com/barbacbd/nautical/v1/pkg/time"
nt "github.com/barbacbd/nautical/pkg/time"
)

// BuoyData contains the scientific data associated with a Buoy
Expand Down
2 changes: 1 addition & 1 deletion pkg/noaa/buoy/buoy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"os"
"testing"

"github.com/barbacbd/nautical/v1/pkg/time"
"github.com/barbacbd/nautical/pkg/time"

"github.com/anaskhan96/soup"
"github.com/stretchr/testify/assert"
Expand Down
4 changes: 2 additions & 2 deletions pkg/noaa/buoy/cdata.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"
"strings"

loc "github.com/barbacbd/nautical/v1/pkg/location"
nt "github.com/barbacbd/nautical/v1/pkg/time"
loc "github.com/barbacbd/nautical/pkg/location"
nt "github.com/barbacbd/nautical/pkg/time"
)

// LocationSign contains the type (Latitude vs Longitude) and the
Expand Down
2 changes: 1 addition & 1 deletion pkg/noaa/buoy/cdata_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package buoy
import (
"testing"

nt "github.com/barbacbd/nautical/v1/pkg/time"
nt "github.com/barbacbd/nautical/pkg/time"
"github.com/stretchr/testify/assert"
)

Expand Down

0 comments on commit 5553fae

Please sign in to comment.