File tree Expand file tree Collapse file tree 15 files changed +38
-38
lines changed Expand file tree Collapse file tree 15 files changed +38
-38
lines changed Original file line number Diff line number Diff line change 1
1
package compare
2
2
3
3
import (
4
- "github.com/psanetra /git-semver/logger"
5
- "github.com/psanetra /git-semver/semver"
4
+ "github.com/andrewb1269hg /git-semver/logger"
5
+ "github.com/andrewb1269hg /git-semver/semver"
6
6
"github.com/spf13/cobra"
7
7
)
8
8
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ package latest
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/psanetra /git-semver/cli/common_opts"
6
- "github.com/psanetra /git-semver/latest"
7
- "github.com/psanetra /git-semver/logger"
5
+ "github.com/andrewb1269hg /git-semver/cli/common_opts"
6
+ "github.com/andrewb1269hg /git-semver/latest"
7
+ "github.com/andrewb1269hg /git-semver/logger"
8
8
"github.com/spf13/cobra"
9
9
)
10
10
Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ package log
3
3
import (
4
4
"encoding/json"
5
5
"fmt"
6
- "github.com/psanetra /git-semver/cli/common_opts"
7
- "github.com/psanetra /git-semver/conventional_commits"
8
- "github.com/psanetra /git-semver/logger"
9
- "github.com/psanetra /git-semver/semver"
10
- "github.com/psanetra /git-semver/version_log"
6
+ "github.com/andrewb1269hg /git-semver/cli/common_opts"
7
+ "github.com/andrewb1269hg /git-semver/conventional_commits"
8
+ "github.com/andrewb1269hg /git-semver/logger"
9
+ "github.com/andrewb1269hg /git-semver/semver"
10
+ "github.com/andrewb1269hg /git-semver/version_log"
11
11
"github.com/spf13/cobra"
12
12
)
13
13
Original file line number Diff line number Diff line change 1
1
package main
2
2
3
3
import (
4
- "github.com/psanetra /git-semver/cli/common_opts"
5
- "github.com/psanetra /git-semver/cli/compare"
6
- "github.com/psanetra /git-semver/cli/latest"
7
- "github.com/psanetra /git-semver/cli/log"
8
- "github.com/psanetra /git-semver/cli/next"
9
- "github.com/psanetra /git-semver/logger"
4
+ "github.com/andrewb1269hg /git-semver/cli/common_opts"
5
+ "github.com/andrewb1269hg /git-semver/cli/compare"
6
+ "github.com/andrewb1269hg /git-semver/cli/latest"
7
+ "github.com/andrewb1269hg /git-semver/cli/log"
8
+ "github.com/andrewb1269hg /git-semver/cli/next"
9
+ "github.com/andrewb1269hg /git-semver/logger"
10
10
"github.com/spf13/cobra"
11
11
)
12
12
Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ package next
2
2
3
3
import (
4
4
"fmt"
5
- "github.com/psanetra /git-semver/cli/common_opts"
6
- "github.com/psanetra /git-semver/logger"
7
- "github.com/psanetra /git-semver/next"
8
- "github.com/psanetra /git-semver/semver"
5
+ "github.com/andrewb1269hg /git-semver/cli/common_opts"
6
+ "github.com/andrewb1269hg /git-semver/logger"
7
+ "github.com/andrewb1269hg /git-semver/next"
8
+ "github.com/andrewb1269hg /git-semver/semver"
9
9
"github.com/spf13/cobra"
10
10
)
11
11
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package conventional_commits
2
2
3
3
import (
4
4
"github.com/pkg/errors"
5
- "github.com/psanetra /git-semver/regex_utils"
5
+ "github.com/andrewb1269hg /git-semver/regex_utils"
6
6
"regexp"
7
7
"strings"
8
8
)
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ package git_utils
2
2
3
3
import (
4
4
"github.com/go-git/go-git/v5"
5
- "github.com/psanetra /git-semver/semver"
5
+ "github.com/andrewb1269hg /git-semver/semver"
6
6
"io"
7
7
)
8
8
Original file line number Diff line number Diff line change 4
4
"github.com/go-git/go-git/v5/plumbing"
5
5
"github.com/go-git/go-git/v5/plumbing/object"
6
6
"github.com/go-git/go-git/v5/plumbing/storer"
7
- "github.com/psanetra /git-semver/logger"
7
+ "github.com/andrewb1269hg /git-semver/logger"
8
8
)
9
9
10
10
func RefToCommitHash (storer storer.EncodedObjectStorer , tagRef * plumbing.Reference ) plumbing.Hash {
Original file line number Diff line number Diff line change 1
- module github.com/psanetra /git-semver
1
+ module github.com/andrewb1269hg /git-semver
2
2
3
3
require (
4
4
github.com/go-git/go-git/v5 v5.11.0
Original file line number Diff line number Diff line change 5
5
"github.com/go-git/go-git/v5"
6
6
"github.com/go-git/go-git/v5/plumbing"
7
7
"github.com/pkg/errors"
8
- "github.com/psanetra /git-semver/logger"
9
- "github.com/psanetra /git-semver/semver"
8
+ "github.com/andrewb1269hg /git-semver/logger"
9
+ "github.com/andrewb1269hg /git-semver/semver"
10
10
"io"
11
11
)
12
12
You can’t perform that action at this time.
0 commit comments