From 238d0182aa909cc1602b2a7a5613cc229e0750e3 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 11:10:34 -0600 Subject: [PATCH] Version Packages (#1096) Co-authored-by: github-actions[bot] Co-authored-by: David Zhao --- .changeset/fair-chefs-complain.md | 6 ------ examples/participant-entrypoint/requirements.txt | 2 +- examples/simple-color/requirements.txt | 2 +- examples/speech-to-text/requirements.txt | 4 ++-- examples/text-to-speech/requirements.txt | 2 +- examples/voice-pipeline-agent/requirements.txt | 4 ++-- livekit-agents/CHANGELOG.md | 6 ++++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/package.json | 2 +- livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md | 6 ++++++ .../livekit/plugins/deepgram/version.py | 2 +- livekit-plugins/livekit-plugins-deepgram/package.json | 2 +- livekit-plugins/livekit-plugins-deepgram/setup.py | 2 +- 13 files changed, 24 insertions(+), 18 deletions(-) delete mode 100644 .changeset/fair-chefs-complain.md diff --git a/.changeset/fair-chefs-complain.md b/.changeset/fair-chefs-complain.md deleted file mode 100644 index 392cbae49..000000000 --- a/.changeset/fair-chefs-complain.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"livekit-plugins-deepgram": patch -"livekit-agents": patch ---- - -add PeriodicCollector utility for metrics diff --git a/examples/participant-entrypoint/requirements.txt b/examples/participant-entrypoint/requirements.txt index bab12a04f..f1a7906e6 100644 --- a/examples/participant-entrypoint/requirements.txt +++ b/examples/participant-entrypoint/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.11.2 +livekit-agents>=0.11.3 python-dotenv~=1.0 diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index bab12a04f..f1a7906e6 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.11.2 +livekit-agents>=0.11.3 python-dotenv~=1.0 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index e3f5c9d4c..5e8abfa56 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,3 +1,3 @@ -livekit-agents>=0.11.2 -livekit-plugins-deepgram>=0.6.10 +livekit-agents>=0.11.3 +livekit-plugins-deepgram>=0.6.11 python-dotenv~=1.0 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index 95a22f64f..3411c8661 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.11.2 +livekit-agents>=0.11.3 livekit-plugins-openai>=0.10.7 livekit-plugins-cartesia>=0.4.3 livekit-plugins-elevenlabs>=0.7.7 diff --git a/examples/voice-pipeline-agent/requirements.txt b/examples/voice-pipeline-agent/requirements.txt index 105d88084..480526b8e 100644 --- a/examples/voice-pipeline-agent/requirements.txt +++ b/examples/voice-pipeline-agent/requirements.txt @@ -1,6 +1,6 @@ -livekit-agents>=0.11.2 +livekit-agents>=0.11.3 livekit-plugins-openai>=0.10.7 -livekit-plugins-deepgram>=0.6.10 +livekit-plugins-deepgram>=0.6.11 livekit-plugins-silero>=0.7.3 livekit-plugins-rag>=0.2.2 python-dotenv~=1.0 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index f888b8077..7d0c2450f 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.11.3 + +### Patch Changes + +- add PeriodicCollector utility for metrics - [#1094](https://github.com/livekit/agents/pull/1094) ([@davidzhao](https://github.com/davidzhao)) + ## 0.11.2 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 1783979fa..3debd106b 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.11.2" +__version__ = "0.11.3" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index 84f3f1e5a..c869cf3d8 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.11.2" + "version": "0.11.3" } diff --git a/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md b/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md index 6da1bc5e3..19d0812a4 100644 --- a/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-deepgram/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-deepgram +## 0.6.11 + +### Patch Changes + +- add PeriodicCollector utility for metrics - [#1094](https://github.com/livekit/agents/pull/1094) ([@davidzhao](https://github.com/davidzhao)) + ## 0.6.10 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py index b0db5ab57..a86319c6e 100644 --- a/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py +++ b/livekit-plugins/livekit-plugins-deepgram/livekit/plugins/deepgram/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.6.10" +__version__ = "0.6.11" diff --git a/livekit-plugins/livekit-plugins-deepgram/package.json b/livekit-plugins/livekit-plugins-deepgram/package.json index 62409bb6a..dfdd57a9a 100644 --- a/livekit-plugins/livekit-plugins-deepgram/package.json +++ b/livekit-plugins/livekit-plugins-deepgram/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-deepgram", "private": true, - "version": "0.6.10" + "version": "0.6.11" } diff --git a/livekit-plugins/livekit-plugins-deepgram/setup.py b/livekit-plugins/livekit-plugins-deepgram/setup.py index 49069779a..077c6d659 100644 --- a/livekit-plugins/livekit-plugins-deepgram/setup.py +++ b/livekit-plugins/livekit-plugins-deepgram/setup.py @@ -47,7 +47,7 @@ license="Apache-2.0", packages=setuptools.find_namespace_packages(include=["livekit.*"]), python_requires=">=3.9.0", - install_requires=["livekit-agents>=0.11.2", "numpy~=1.21"], + install_requires=["livekit-agents>=0.11.3", "numpy~=1.21"], package_data={"livekit.plugins.deepgram": ["py.typed"]}, project_urls={ "Documentation": "https://docs.livekit.io",