Skip to content

Commit ebe4a3e

Browse files
committed
go.mod: github.com/lima-vm/lima/v2
The major version is now updated to highlight the introduction of the pluggable VM driver framework. See issue 3712 Signed-off-by: Akihiro Suda <[email protected]>
1 parent d7f297a commit ebe4a3e

File tree

134 files changed

+404
-404
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+404
-404
lines changed

cmd/lima-driver-qemu/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
package main
55

66
import (
7-
"github.com/lima-vm/lima/pkg/driver/external/server"
8-
"github.com/lima-vm/lima/pkg/driver/qemu"
7+
"github.com/lima-vm/lima/v2/pkg/driver/external/server"
8+
"github.com/lima-vm/lima/v2/pkg/driver/qemu"
99
)
1010

1111
// To be used as an external driver for Lima.

cmd/lima-driver-vz/main_darwin.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
package main
55

66
import (
7-
"github.com/lima-vm/lima/pkg/driver/external/server"
8-
"github.com/lima-vm/lima/pkg/driver/vz"
7+
"github.com/lima-vm/lima/v2/pkg/driver/external/server"
8+
"github.com/lima-vm/lima/v2/pkg/driver/vz"
99
)
1010

1111
// To be used as an external driver for Lima.

cmd/lima-driver-wsl2/main_windows.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
package main
55

66
import (
7-
"github.com/lima-vm/lima/pkg/driver/external/server"
8-
"github.com/lima-vm/lima/pkg/driver/wsl2"
7+
"github.com/lima-vm/lima/v2/pkg/driver/external/server"
8+
"github.com/lima-vm/lima/v2/pkg/driver/wsl2"
99
)
1010

1111
// To be used as an external driver for Lima.

cmd/lima-guestagent/daemon_linux.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ import (
1313
"github.com/sirupsen/logrus"
1414
"github.com/spf13/cobra"
1515

16-
"github.com/lima-vm/lima/pkg/guestagent"
17-
"github.com/lima-vm/lima/pkg/guestagent/api/server"
18-
"github.com/lima-vm/lima/pkg/guestagent/serialport"
19-
"github.com/lima-vm/lima/pkg/portfwdserver"
16+
"github.com/lima-vm/lima/v2/pkg/guestagent"
17+
"github.com/lima-vm/lima/v2/pkg/guestagent/api/server"
18+
"github.com/lima-vm/lima/v2/pkg/guestagent/serialport"
19+
"github.com/lima-vm/lima/v2/pkg/portfwdserver"
2020
)
2121

2222
func newDaemonCommand() *cobra.Command {

cmd/lima-guestagent/install_systemd_linux.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"github.com/sirupsen/logrus"
1616
"github.com/spf13/cobra"
1717

18-
"github.com/lima-vm/lima/pkg/textutil"
18+
"github.com/lima-vm/lima/v2/pkg/textutil"
1919
)
2020

2121
func newInstallSystemdCommand() *cobra.Command {

cmd/lima-guestagent/main_linux.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"github.com/sirupsen/logrus"
1010
"github.com/spf13/cobra"
1111

12-
"github.com/lima-vm/lima/pkg/debugutil"
13-
"github.com/lima-vm/lima/pkg/version"
12+
"github.com/lima-vm/lima/v2/pkg/debugutil"
13+
"github.com/lima-vm/lima/v2/pkg/version"
1414
)
1515

1616
func main() {

cmd/limactl/clone.go

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111

1212
"github.com/spf13/cobra"
1313

14-
"github.com/lima-vm/lima/cmd/limactl/editflags"
15-
"github.com/lima-vm/lima/pkg/instance"
16-
"github.com/lima-vm/lima/pkg/limayaml"
17-
networks "github.com/lima-vm/lima/pkg/networks/reconcile"
18-
"github.com/lima-vm/lima/pkg/store"
19-
"github.com/lima-vm/lima/pkg/store/filenames"
20-
"github.com/lima-vm/lima/pkg/yqutil"
14+
"github.com/lima-vm/lima/v2/cmd/limactl/editflags"
15+
"github.com/lima-vm/lima/v2/pkg/instance"
16+
"github.com/lima-vm/lima/v2/pkg/limayaml"
17+
networks "github.com/lima-vm/lima/v2/pkg/networks/reconcile"
18+
"github.com/lima-vm/lima/v2/pkg/store"
19+
"github.com/lima-vm/lima/v2/pkg/store/filenames"
20+
"github.com/lima-vm/lima/v2/pkg/yqutil"
2121
)
2222

2323
func newCloneCommand() *cobra.Command {

cmd/limactl/completion.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111

1212
"github.com/spf13/cobra"
1313

14-
"github.com/lima-vm/lima/pkg/networks"
15-
"github.com/lima-vm/lima/pkg/store"
16-
"github.com/lima-vm/lima/pkg/templatestore"
14+
"github.com/lima-vm/lima/v2/pkg/networks"
15+
"github.com/lima-vm/lima/v2/pkg/store"
16+
"github.com/lima-vm/lima/v2/pkg/templatestore"
1717
)
1818

1919
func bashCompleteInstanceNames(_ *cobra.Command) ([]string, cobra.ShellCompDirective) {

cmd/limactl/copy.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import (
1616
"github.com/sirupsen/logrus"
1717
"github.com/spf13/cobra"
1818

19-
"github.com/lima-vm/lima/pkg/ioutilx"
20-
"github.com/lima-vm/lima/pkg/sshutil"
21-
"github.com/lima-vm/lima/pkg/store"
19+
"github.com/lima-vm/lima/v2/pkg/ioutilx"
20+
"github.com/lima-vm/lima/v2/pkg/sshutil"
21+
"github.com/lima-vm/lima/v2/pkg/store"
2222
)
2323

2424
const copyHelp = `Copy files between host and guest

cmd/limactl/debug.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"github.com/sirupsen/logrus"
1111
"github.com/spf13/cobra"
1212

13-
"github.com/lima-vm/lima/pkg/hostagent/dns"
13+
"github.com/lima-vm/lima/v2/pkg/hostagent/dns"
1414
)
1515

1616
func newDebugCommand() *cobra.Command {

0 commit comments

Comments
 (0)