Skip to content

Commit

Permalink
Merge pull request #133 from nukosuke/release-v0.3.0
Browse files Browse the repository at this point in the history
Prepare to release v0.3.0
  • Loading branch information
nukosuke authored Oct 4, 2019
2 parents 36c2313 + f721cfc commit 8ae42f1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/nukosuke/go-zendesk
module github.com/nukosuke/go-zendesk/v0.3

require (
github.com/golang/mock v1.3.1
Expand Down
2 changes: 1 addition & 1 deletion zendesk/api.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package zendesk

//nolint
//go:generate mockgen -destination=mock/client.go -package=mock -mock_names=API=Client github.com/nukosuke/go-zendesk/zendesk API
//go:generate mockgen -destination=mock/client.go -package=mock -mock_names=API=Client github.com/nukosuke/go-zendesk/v0.3/zendesk API

// API an interface containing all of the zendesk client methods
type API interface {
Expand Down
4 changes: 3 additions & 1 deletion zendesk/mock/api.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package mock

import "github.com/nukosuke/go-zendesk/zendesk"
import (
"github.com/nukosuke/go-zendesk/v0.3/zendesk"
)

var _ zendesk.API = (*Client)(nil)
4 changes: 2 additions & 2 deletions zendesk/mock/client.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8ae42f1

Please sign in to comment.