chore(eventbus): update module path for v2#183
Merged
kristopherchun merged 1 commit intomainfrom Feb 20, 2026
Merged
Conversation
This updates the eventbus module path from: github.com/CrisisTextLine/modular/modules/eventbus to: github.com/CrisisTextLine/modular/modules/eventbus/v2 This is required for releasing version v2.0.0 according to Go module versioning requirements. See https://go.dev/blog/v2-go-modules for more information.
kristopherchun
approved these changes
Feb 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Module Path Update for eventbus v2.0.0
This PR updates the module path in `modules/eventbus/go.mod` to include the `/v2` suffix as required by Go module versioning for major versions 2 and above.
Changes:
Why This Change Is Needed:
According to Go module versioning requirements, when releasing a major version v2 or higher, the module path must include a version suffix. This ensures proper dependency resolution and prevents conflicts with v0/v1 versions.
Reference: https://go.dev/blog/v2-go-modules
Next Steps:
This PR was automatically created by the module release workflow.