Skip to content

Commit ebb8f80

Browse files
committed
release: bump to v6
Signed-off-by: Prajwal S N <[email protected]>
1 parent 4d02279 commit ebb8f80

File tree

18 files changed

+26
-25
lines changed

18 files changed

+26
-25
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@ The following table shows the relation between go-criu and criu versions:
5858

5959
| Major version | Latest release | CRIU version |
6060
| -------------- | -------------- | ------------ |
61-
| v5             | 5.2.0         | 3.16         |
61+
| v6             | 6.0.0         | 3.17         |
62+
| v5             | 5.3.0         | 3.16         |
6263
| v5             | 5.0.0         | 3.15         |
6364
| v4             | 4.1.0         | 3.14         |
6465

crit/cmd/cli.go

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

10-
"github.com/checkpoint-restore/go-criu/v5/crit"
10+
"github.com/checkpoint-restore/go-criu/v6/crit"
1111
"github.com/spf13/cobra"
1212
)
1313

crit/decode-extra.go

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

11-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
11+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
1212
"google.golang.org/protobuf/encoding/protojson"
1313
"google.golang.org/protobuf/proto"
1414
)

crit/decode.go

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

10-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
10+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
1111
"google.golang.org/protobuf/proto"
1212
)
1313

crit/encode-extra.go

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

8-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
8+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
99
"google.golang.org/protobuf/encoding/protojson"
1010
"google.golang.org/protobuf/proto"
1111
)

crit/encode.go

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

10-
"github.com/checkpoint-restore/go-criu/v5/magic"
10+
"github.com/checkpoint-restore/go-criu/v6/magic"
1111
"google.golang.org/protobuf/proto"
1212
)
1313

crit/explore.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strconv"
66

7-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
7+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
88
)
99

1010
// PsTree represents the process tree

crit/image.go

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

8-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
8+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
99
"google.golang.org/protobuf/encoding/protojson"
1010
"google.golang.org/protobuf/proto"
1111
)

crit/utils.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"os"
99
"strconv"
1010

11-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
12-
"github.com/checkpoint-restore/go-criu/v5/magic"
11+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
12+
"github.com/checkpoint-restore/go-criu/v6/magic"
1313
)
1414

1515
// Helper to decode magic name from hex value

features.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package criu
33
import (
44
"fmt"
55

6-
"github.com/checkpoint-restore/go-criu/v5/crit/images"
6+
"github.com/checkpoint-restore/go-criu/v6/crit/images"
77
)
88

99
// Feature checking in go-criu is based on the libcriu feature checking function.

0 commit comments

Comments
 (0)