-
Notifications
You must be signed in to change notification settings - Fork 249
chore: prep rc.4 #3062
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: prep rc.4 #3062
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,13 +2,13 @@ module github.com/evstack/ev-node/apps/grpc | |
|
|
||
| go 1.25.6 | ||
|
|
||
| replace ( | ||
| github.com/evstack/ev-node => ../../ | ||
| github.com/evstack/ev-node/execution/grpc => ../../execution/grpc | ||
| ) | ||
| //replace ( | ||
| // github.com/evstack/ev-node => ../../ | ||
| // github.com/evstack/ev-node/execution/grpc => ../../execution/grpc | ||
| //) | ||
|
Comment on lines
+5
to
+8
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
|
|
||
| require ( | ||
| github.com/evstack/ev-node v1.0.0-rc.3 | ||
| github.com/evstack/ev-node v1.0.0-rc.4 | ||
| github.com/evstack/ev-node/core v1.0.0-rc.1 | ||
| github.com/evstack/ev-node/execution/grpc v1.0.0-rc.1 | ||
| github.com/ipfs/go-datastore v0.9.0 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,10 +2,10 @@ module github.com/evstack/ev-node/apps/testapp | |
|
|
||
| go 1.25.6 | ||
|
|
||
| replace github.com/evstack/ev-node => ../../ | ||
| //replace github.com/evstack/ev-node => ../../ | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The |
||
|
|
||
| require ( | ||
| github.com/evstack/ev-node v1.0.0-rc.3 | ||
| github.com/evstack/ev-node v1.0.0-rc.4 | ||
| github.com/evstack/ev-node/core v1.0.0-rc.1 | ||
| github.com/ipfs/go-datastore v0.9.0 | ||
| github.com/rs/zerolog v1.34.0 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
replacedirectives have been commented out. While this is standard for release preparation (assuming the modules are now published), it might affect local development workflows for contributors who rely on these local replacements. Please ensure that the local development setup or documentation is updated to reflect this change, or consider adding a note about how to handle local development if these directives are needed.