chore: require core v1.1.0 (#3391)
* chore: require core v1.1.0
Bump the root module's core requirement from v1.0.0 to the freshly
released core/v1.1.0, which carries the breaking Executor change
(ExecuteTxs now returns ExecuteResult). The code has depended on this
API since #3282 but go.mod still required v1.0.0, building only via the
local `replace => ./core`. External consumers ignore that replace, so
this must be v1.1.0 for a working release.
Prerequisite for tagging v1.2.1 (v1.2.0 shipped with the stale v1.0.0
requirement and is superseded).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* chore: drop core replace from root go.mod
Remove `replace github.com/evstack/ev-node/core => ./core` so the
published module resolves core v1.1.0 from the proxy with a proper
go.sum checksum, instead of relying on a local path that consumers
ignore. Local cross-module dev is handled by go.work (go.work.example
already `use`s ./core).
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* updates deps
---------
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>