Skip to content

Commit 7582bbd

Browse files
authored
Merge pull request #3 from zcong1993/main
chore: tweak module name, follow go mod major version update docs
2 parents de5145d + 4a44eb0 commit 7582bbd

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/reviewdog.yml

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v2
9+
- uses: actions/setup-go@v3
10+
with:
11+
go-version: "1.18"
912
- uses: reviewdog/action-staticcheck@v1
1013
with:
1114
github_token: ${{ secrets.github_token }}

examples/sum.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"log"
66

7-
"github.com/kevwan/mapreduce"
7+
"github.com/kevwan/mapreduce/v2"
88
)
99

1010
func main() {

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/kevwan/mapreduce
1+
module github.com/kevwan/mapreduce/v2
22

33
go 1.18
44

readme-cn.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import (
6969
"fmt"
7070
"log"
7171

72-
"github.com/kevwan/mapreduce"
72+
"github.com/kevwan/mapreduce/v2"
7373
)
7474

7575
func main() {

0 commit comments

Comments
 (0)