Skip to content

Commit bf79269

Browse files
committed
feat: Official module release
1 parent 30e6852 commit bf79269

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ WORKDIR /go/src/app
66
ADD . /go/src/app
77

88
#RUN goreleaser release --skip-publish --snapshot --rm-dist
9-
RUN go mod download && go build -o /go/bin/app changelog/cmd
9+
RUN go mod download && go build -o /go/bin/app github.com/jimschubert/changelog/cmd
1010

1111
FROM gcr.io/distroless/base-debian10
1212
COPY --from=builder /go/bin/app /

changelog.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ import (
1717
log "github.com/sirupsen/logrus"
1818
"golang.org/x/oauth2"
1919

20-
"changelog/model"
21-
"changelog/service"
20+
"github.com/jimschubert/changelog/model"
21+
"github.com/jimschubert/changelog/service"
2222
)
2323

2424
const emptyTree = "master~1"

changelog_test.go

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

2424
"github.com/google/go-github/v29/github"
2525

26-
"changelog/model"
26+
"github.com/jimschubert/changelog/model"
2727
)
2828

2929
func commits(items ...model.ChangeItem) *[]model.ChangeItem {

cmd/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"github.com/jessevdk/go-flags"
2323
log "github.com/sirupsen/logrus"
2424

25-
"changelog"
26-
"changelog/model"
25+
"github.com/jimschubert/changelog"
26+
"github.com/jimschubert/changelog/model"
2727
)
2828

2929
var version = ""

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module changelog
1+
module github.com/jimschubert/changelog
22

33
go 1.14
44

service/github_service.go

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

2424
"github.com/google/go-github/v29/github"
2525

26-
"changelog/model"
26+
"github.com/jimschubert/changelog/model"
2727
)
2828

2929
type githubService struct {

service/github_service_test.go

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

2020
"github.com/google/go-github/v29/github"
2121

22-
"changelog/model"
22+
"github.com/jimschubert/changelog/model"
2323
)
2424

2525
func Test_githubService_shouldExcludeViaRepositoryCommit(t *testing.T) {

service/local_git_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"github.com/google/go-github/v29/github"
3131
log "github.com/sirupsen/logrus"
3232

33-
"changelog/model"
33+
"github.com/jimschubert/changelog/model"
3434
)
3535

3636
var foundError = errors.New("found")

service/store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
"github.com/google/go-github/v29/github"
2525
log "github.com/sirupsen/logrus"
2626

27-
"changelog/model"
27+
"github.com/jimschubert/changelog/model"
2828
)
2929

3030
// Store defines the functional interface for accessing a store of Git commits

service/store_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ package service
1717
import (
1818
"testing"
1919

20-
"changelog/model"
20+
"github.com/jimschubert/changelog/model"
2121
)
2222

2323
func Test_applyPullPropertiesChangeItem(t *testing.T) {

0 commit comments

Comments
 (0)