Skip to content

Commit

Permalink
Merge pull request #46 from suzuki-shunsuke/chore/release-v2
Browse files Browse the repository at this point in the history
chore: release v2
  • Loading branch information
suzuki-shunsuke committed Feb 21, 2021
2 parents 3d00dd4 + a0c6b4e commit 3720dda
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .drone.yml
Expand Up @@ -55,7 +55,7 @@ steps:
image: golang:1.16.0
commands:
# bash and cgo seem to be required
- bash ci/test.sh "$DRONE_REPO_NAME"
- bash ci/test.sh "${DRONE_REPO_NAME}/v2"
environment:
CC_TEST_REPORTER_ID:
from_secret: cc_test_reporter_id
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -2,3 +2,4 @@
/coverage.txt
/coverage.out
/.git-rm-branch.yml
/.code-climate
2 changes: 1 addition & 1 deletion ci/test.sh
Expand Up @@ -11,7 +11,7 @@ if [ -z "$repo_name" ]; then
fi

mkdir -p bin
curl -L -o bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-0.6.3-linux-amd64
curl -L -o bin/cc-test-reporter https://codeclimate.com/downloads/test-reporter/test-reporter-0.9.0-linux-amd64
chmod a+x bin/cc-test-reporter
export PATH="$PWD/bin:$PATH"
bash scripts/test-code-climate.sh "$repo_name"
2 changes: 1 addition & 1 deletion dataeq/dataeq_test.go
Expand Up @@ -5,7 +5,7 @@ import (
"testing"

"github.com/stretchr/testify/require"
"github.com/suzuki-shunsuke/go-dataeq/dataeq"
"github.com/suzuki-shunsuke/go-dataeq/v2/dataeq"
)

type (
Expand Down
2 changes: 1 addition & 1 deletion dataeq/example_test.go
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/suzuki-shunsuke/go-dataeq/dataeq"
"github.com/suzuki-shunsuke/go-dataeq/v2/dataeq"
)

type (
Expand Down
7 changes: 5 additions & 2 deletions go.mod
@@ -1,5 +1,8 @@
module github.com/suzuki-shunsuke/go-dataeq
module github.com/suzuki-shunsuke/go-dataeq/v2

go 1.13

require github.com/stretchr/testify v1.7.0
require (
github.com/stretchr/testify v1.7.0
github.com/suzuki-shunsuke/go-dataeq v1.0.1
)
3 changes: 3 additions & 0 deletions go.sum
Expand Up @@ -3,8 +3,11 @@ github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
github.com/suzuki-shunsuke/go-dataeq v1.0.1 h1:ruo7fZ2tT1g5wSWxNTXbDzbdKZRyycnUiAQrhkrOWxw=
github.com/suzuki-shunsuke/go-dataeq v1.0.1/go.mod h1:y9Jf/g370ehd4VBPajzO2Ir8kj+Y4OR+yRu+T5CiK88=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c h1:dUUwHk2QECo/6vqA44rthZ8ie2QXMNeKRTHCNY2nXvo=
Expand Down

0 comments on commit 3720dda

Please sign in to comment.