Skip to content

Commit eac1b39

Browse files
committed
修改版本号
1 parent 4efa4fd commit eac1b39

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

deepest-leaves-sum/go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ module github.com/masx200/leetcode-test/deepest-leaves-sum
22

33
go 1.19
44

5-
require github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589
5+
require github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0
66

7-
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589 => ../serialize-and-deserialize-binary-tree
7+
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0 => ../serialize-and-deserialize-binary-tree
88

99
require (
10-
github.com/masx200/leetcode-test/utils v0.0.0-20220817020324-66611ff0c589
10+
github.com/masx200/leetcode-test/utils v0.0.0
1111
gotest.tools/v3 v3.3.0
1212
)
1313

@@ -16,4 +16,4 @@ require (
1616
github.com/google/go-cmp v0.5.8 // indirect
1717
)
1818

19-
replace github.com/masx200/leetcode-test/utils v0.0.0-20220817020324-66611ff0c589 => ../utils
19+
replace github.com/masx200/leetcode-test/utils v0.0.0 => ../utils

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ module github.com/masx200/leetcode-test
33
go 1.18
44

55
require (
6-
github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589
6+
github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0
77
gotest.tools/v3 v3.3.0
88
)
99

1010
require github.com/google/go-cmp v0.5.8 // indirect
1111

12-
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589 => ./serialize-and-deserialize-binary-tree
12+
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0 => ./serialize-and-deserialize-binary-tree

utils/go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ module github.com/masx200/leetcode-test/utils
33
go 1.19
44

55
require github.com/egregors/TreeNode v1.0.3
6-
require github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589
76

8-
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0-20220817020324-66611ff0c589 => ../serialize-and-deserialize-binary-tree
7+
require github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0
8+
9+
replace github.com/masx200/leetcode-test/serialize-and-deserialize-binary-tree v0.0.0 => ../serialize-and-deserialize-binary-tree

0 commit comments

Comments
 (0)