Release Notes: v0.13.0¶
Release Date: 2026-02-28
Highlights¶
- Organization Rename: GitHub organization renamed from
agentplexustoplexusone
Breaking Changes¶
This release contains a breaking change due to the organization rename:
| Component | Before | After |
|---|---|---|
| Go module | github.com/agentplexus/omnillm |
github.com/plexusone/omnillm |
Migration Guide¶
Update your import paths:
Update your go.mod:
# Remove old dependency
go mod edit -droprequire github.com/agentplexus/omnillm
# Add new dependency
go get github.com/plexusone/omnillm@v0.13.0
# Clean up
go mod tidy