Skip to content
This repository was archived by the owner on May 1, 2025. It is now read-only.

Commit e0f34f8

Browse files
author
mr-pmillz
committed
v2 major release version bump
1 parent bd40c5e commit e0f34f8

21 files changed

+32
-32
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Table of Contents
3636
If you have a version of golang >= 16.X you can install with
3737

3838
```shell
39-
go install github.com/mr-pmillz/pimp-my-shell@latest
39+
go install github.com/mr-pmillz/pimp-my-shell/v2@latest
4040
```
4141

4242
If using an older version of golang
4343

4444
```shell
45-
go get github.com/mr-pmillz/pimp-my-shell@latest
45+
go get github.com/mr-pmillz/pimp-my-shell/v2@latest
4646
```
4747

4848
### Manual installation

cheat/cheat.go

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

10-
"github.com/mr-pmillz/pimp-my-shell/localio"
10+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1111
)
1212

1313
type cheatConfigOptions struct {

cheat/cheat_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
func TestInstallCheat(t *testing.T) {

extra/extra.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"fmt"
66
"os"
77

8-
"github.com/mr-pmillz/pimp-my-shell/githubapi"
9-
"github.com/mr-pmillz/pimp-my-shell/localio"
8+
"github.com/mr-pmillz/pimp-my-shell/v2/githubapi"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
"gopkg.in/ini.v1"
1111
)
1212

extra/extra_test.go

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

8-
"github.com/mr-pmillz/pimp-my-shell/localio"
8+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
99
)
1010

1111
func TestInstallExtraPackages(t *testing.T) {

githubapi/githubapi.go

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

11-
"github.com/mr-pmillz/pimp-my-shell/localio"
11+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1212

1313
"github.com/google/go-github/v39/github"
1414
"golang.org/x/oauth2"

githubapi/githubapi_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
"github.com/stretchr/testify/assert"
1111
)
1212

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/mr-pmillz/pimp-my-shell
1+
module github.com/mr-pmillz/pimp-my-shell/v2
22

33
go 1.19
44

linux/linux.go

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

8-
"github.com/mr-pmillz/pimp-my-shell/localio"
8+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
99
)
1010

1111
//go:embed templates/*

macosx/macosx.go

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

6-
"github.com/mr-pmillz/pimp-my-shell/localio"
6+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
77
)
88

99
// InstallHomebrew if Not already installed

macosx/macosx_test.go

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

6-
"github.com/mr-pmillz/pimp-my-shell/localio"
6+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
77
)
88

99
func TestInstallHomebrew(t *testing.T) {

main.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import (
55
"log"
66
"runtime"
77

8-
"github.com/mr-pmillz/pimp-my-shell/cheat"
9-
"github.com/mr-pmillz/pimp-my-shell/extra"
10-
"github.com/mr-pmillz/pimp-my-shell/linux"
11-
"github.com/mr-pmillz/pimp-my-shell/localio"
12-
"github.com/mr-pmillz/pimp-my-shell/macosx"
13-
"github.com/mr-pmillz/pimp-my-shell/nerdfonts"
14-
"github.com/mr-pmillz/pimp-my-shell/tmux"
15-
"github.com/mr-pmillz/pimp-my-shell/vim"
16-
"github.com/mr-pmillz/pimp-my-shell/zsh"
8+
"github.com/mr-pmillz/pimp-my-shell/v2/cheat"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/extra"
10+
"github.com/mr-pmillz/pimp-my-shell/v2/linux"
11+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
12+
"github.com/mr-pmillz/pimp-my-shell/v2/macosx"
13+
"github.com/mr-pmillz/pimp-my-shell/v2/nerdfonts"
14+
"github.com/mr-pmillz/pimp-my-shell/v2/tmux"
15+
"github.com/mr-pmillz/pimp-my-shell/v2/vim"
16+
"github.com/mr-pmillz/pimp-my-shell/v2/zsh"
1717
)
1818

1919
// pimpMyShell runs all the installation setup tasks

main_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
func Test_pimpMyShell(t *testing.T) {

nerdfonts/nerdfonts.go

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

7-
"github.com/mr-pmillz/pimp-my-shell/localio"
7+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
88
)
99

1010
// InstallNerdFontsLSD ...

nerdfonts/nerfonts_test.go

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

6-
"github.com/mr-pmillz/pimp-my-shell/localio"
6+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
77
)
88

99
func TestInstallNerdFontsLSD(t *testing.T) {

tmux/tmux.go

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

88
gotmux "github.com/jubnzv/go-tmux"
9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
//go:embed templates/*

tmux/tmux_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
func TestInstallOhMyTmux(t *testing.T) {

vim/vim.go

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

88
"github.com/google/periph/host/distro"
9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
//go:embed templates/*

vim/vim_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
func TestInstallVimPlugins(t *testing.T) {

zsh/zsh.go

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

1111
"github.com/Masterminds/semver"
12-
"github.com/mr-pmillz/pimp-my-shell/localio"
13-
"github.com/mr-pmillz/pimp-my-shell/osrelease"
12+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
13+
"github.com/mr-pmillz/pimp-my-shell/v2/osrelease"
1414
)
1515

1616
//go:embed templates/*

zsh/zsh_test.go

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

9-
"github.com/mr-pmillz/pimp-my-shell/localio"
9+
"github.com/mr-pmillz/pimp-my-shell/v2/localio"
1010
)
1111

1212
// Test_updateZSHPlugins is a basic test checking for errors, it doesn't validate the correct plugins

0 commit comments

Comments
 (0)