Skip to content

Commit fbe43e3

Browse files
fix semantic import versioning (#63)
Signed-off-by: Mark Sagi-Kazar <[email protected]>
1 parent 4f144be commit fbe43e3

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

client.go

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

1010
"github.com/pkg/errors"
1111

12-
"github.com/performancecopilot/speed/bytewriter"
12+
"github.com/performancecopilot/speed/v4/bytewriter"
1313
)
1414

1515
// byte lengths of different components in an mmv file

client_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"time"
99

1010
"github.com/HdrHistogram/hdrhistogram-go"
11-
"github.com/performancecopilot/speed/mmvdump"
11+
"github.com/performancecopilot/speed/v4/mmvdump"
1212
)
1313

1414
func TestMmvFileLocation(t *testing.T) {

examples/acme/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"math/rand"
2222
"time"
2323

24-
"github.com/performancecopilot/speed"
24+
"github.com/performancecopilot/speed/v4"
2525
)
2626

2727
var runforever bool

examples/basic_histogram/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"math/rand"
77
"time"
88

9-
"github.com/performancecopilot/speed"
9+
"github.com/performancecopilot/speed/v4"
1010
)
1111

1212
func main() {

examples/download/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"log"
99
"net/http"
1010

11-
"github.com/performancecopilot/speed"
11+
"github.com/performancecopilot/speed/v4"
1212
)
1313

1414
type sink int

examples/http_counter/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"net/http"
77
"os"
88

9-
"github.com/performancecopilot/speed"
9+
"github.com/performancecopilot/speed/v4"
1010
)
1111

1212
var metric speed.Counter

examples/instance_string/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"time"
77

8-
"github.com/performancecopilot/speed"
8+
"github.com/performancecopilot/speed/v4"
99
)
1010

1111
var timelimit = flag.Int("time", 60, "number of seconds to run for")

examples/runtime/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"runtime"
88
"time"
99

10-
"github.com/performancecopilot/speed"
10+
"github.com/performancecopilot/speed/v4"
1111
)
1212

1313
// refresh interval

examples/simple/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"os"
77

8-
"github.com/performancecopilot/speed"
8+
"github.com/performancecopilot/speed/v4"
99
)
1010

1111
func main() {

examples/simple_string_metric/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"log"
66
"time"
77

8-
"github.com/performancecopilot/speed"
8+
"github.com/performancecopilot/speed/v4"
99
)
1010

1111
var timelimit = flag.Int("time", 60, "number of seconds to run for")

0 commit comments

Comments
 (0)