Release Notes: v0.6.0¶
Release Date: 2026-05-02
Summary¶
Module rename from omnivoice-deepgram to omni-deepgram for consistency with the omni-* ecosystem naming convention.
Breaking Changes¶
| Component | Before | After |
|---|---|---|
| Go module | github.com/plexusone/omnivoice-deepgram |
github.com/plexusone/omni-deepgram |
Migration Guide¶
Update your import paths:
// Before
import "github.com/plexusone/omnivoice-deepgram/omnivoice/stt"
import "github.com/plexusone/omnivoice-deepgram/omnivoice/tts"
// After
import "github.com/plexusone/omni-deepgram/omnivoice/stt"
import "github.com/plexusone/omni-deepgram/omnivoice/tts"
Update your go.mod:
go mod edit -droprequire github.com/plexusone/omnivoice-deepgram
go get github.com/plexusone/omni-deepgram@v0.6.0
go mod tidy
Documentation¶
- Updated README with new import paths and URLs
- Updated MkDocs site configuration
- Updated all historical release notes for consistency
- Updated design documents (PRD, ROADMAP, TRD_TTS)
Related¶
This rename aligns with the omni-* ecosystem:
- omni-openai - OpenAI provider
- omni-deepgram - Deepgram provider (this package)
- omnivoice-core - Core interfaces