From 1690677ce8aba5687c111db1f7c8817c2404224f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 2 Jan 2025 11:31:10 -0600 Subject: [PATCH] Version Packages (#1327) Co-authored-by: github-actions[bot] --- .changeset/lazy-buckets-obey.md | 5 ----- .changeset/nine-donuts-call.md | 5 ----- examples/participant-entrypoint/requirements.txt | 2 +- examples/simple-color/requirements.txt | 2 +- examples/speech-to-text/requirements.txt | 2 +- examples/text-to-speech/requirements.txt | 4 ++-- examples/voice-pipeline-agent/requirements.txt | 2 +- livekit-agents/CHANGELOG.md | 6 ++++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/package.json | 2 +- livekit-plugins/livekit-plugins-openai/CHANGELOG.md | 6 ++++++ .../livekit/plugins/openai/version.py | 2 +- livekit-plugins/livekit-plugins-openai/package.json | 2 +- 13 files changed, 22 insertions(+), 20 deletions(-) delete mode 100644 .changeset/lazy-buckets-obey.md delete mode 100644 .changeset/nine-donuts-call.md diff --git a/.changeset/lazy-buckets-obey.md b/.changeset/lazy-buckets-obey.md deleted file mode 100644 index 8843e40fc..000000000 --- a/.changeset/lazy-buckets-obey.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -ensure job status updates contain the correct status diff --git a/.changeset/nine-donuts-call.md b/.changeset/nine-donuts-call.md deleted file mode 100644 index 35d06ddc5..000000000 --- a/.changeset/nine-donuts-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-openai": patch ---- - -fix: revert from weakset to list in multimodal for maintaining sessions diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index 77c8959d1..8f492af3d 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.6 +livekit-agents>=0.12.7 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 77c8959d1..8f492af3d 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.12.6 +livekit-agents>=0.12.7 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index b9f8e9fb0..a6347894a 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.12.6 +livekit-agents>=0.12.7 livekit-plugins-deepgram>=0.6.16 python-dotenv~=1.0 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index f03f7fa49..7915dfd7d 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,5 +1,5 @@ -livekit-agents>=0.12.6 -livekit-plugins-openai>=0.10.13 +livekit-agents>=0.12.7 +livekit-plugins-openai>=0.10.14 livekit-plugins-cartesia>=0.4.5 livekit-plugins-elevenlabs>=0.7.9 python-dotenv~=1.0 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index cf97c8314..1cf3cda56 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.12.6 +livekit-agents>=0.12.7 livekit-plugins-deepgram>=0.6.16 livekit-plugins-google>=0.9.0 livekit-plugins-openai[vertex]>=0.10.10 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index d9c3770d4..198152cb8 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.12.7 + +### Patch Changes + +- ensure job status updates contain the correct status - [#1319](https://github.com/livekit/agents/pull/1319) ([@davidzhao](https://github.com/davidzhao)) + ## 0.12.6 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 0696f486e..831d25f39 100644 --- a/livekit-agents/livekit/agents/version.py +++ b/livekit-agents/livekit/agents/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.12.6" +__version__ = "0.12.7" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index c321ac852..d9cb97b31 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.12.6" + "version": "0.12.7" } diff --git a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md index 1e363b412..6b064538a 100644 --- a/livekit-plugins/livekit-plugins-openai/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-openai/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-openai +## 0.10.14 + +### Patch Changes + +- fix: revert from weakset to list in multimodal for maintaining sessions - [#1326](https://github.com/livekit/agents/pull/1326) ([@jayeshp19](https://github.com/jayeshp19)) + ## 0.10.13 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py b/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py index c1fcb43b8..453c5502c 100644 --- a/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py +++ b/livekit-plugins/livekit-plugins-openai/livekit/plugins/openai/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.10.13" +__version__ = "0.10.14" diff --git a/livekit-plugins/livekit-plugins-openai/package.json b/livekit-plugins/livekit-plugins-openai/package.json index e23704cba..ee7cca6bc 100644 --- a/livekit-plugins/livekit-plugins-openai/package.json +++ b/livekit-plugins/livekit-plugins-openai/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-openai", "private": true, - "version": "0.10.13" + "version": "0.10.14" }