From 3428404d1db7226d225cfade4790353a4dfa607a Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 22 Aug 2024 22:26:06 +0000 Subject: [PATCH] Version Packages --- .changeset/brown-games-greet.md | 5 ----- .changeset/fluffy-hornets-vanish.md | 5 ----- .changeset/shaggy-onions-kick.md | 5 ----- examples/simple-color/requirements.txt | 2 +- examples/speech-to-text/requirements.txt | 2 +- examples/text-to-speech/requirements.txt | 2 +- examples/voice-assistant/requirements.txt | 2 +- livekit-agents/CHANGELOG.md | 6 ++++++ livekit-agents/livekit/agents/version.py | 2 +- livekit-agents/package.json | 2 +- livekit-plugins/livekit-plugins-browser/CHANGELOG.md | 5 +++++ .../livekit/plugins/browser/version.py | 2 +- livekit-plugins/livekit-plugins-browser/package.json | 2 +- livekit-plugins/livekit-plugins-nltk/CHANGELOG.md | 6 ++++++ .../livekit-plugins-nltk/livekit/plugins/nltk/version.py | 2 +- livekit-plugins/livekit-plugins-nltk/package.json | 2 +- 16 files changed, 27 insertions(+), 25 deletions(-) delete mode 100644 .changeset/brown-games-greet.md delete mode 100644 .changeset/fluffy-hornets-vanish.md delete mode 100644 .changeset/shaggy-onions-kick.md diff --git a/.changeset/brown-games-greet.md b/.changeset/brown-games-greet.md deleted file mode 100644 index 83fedda36..000000000 --- a/.changeset/brown-games-greet.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-browser": patch ---- - -livekit-plugins-browser: prepare for release diff --git a/.changeset/fluffy-hornets-vanish.md b/.changeset/fluffy-hornets-vanish.md deleted file mode 100644 index 3b9335bbb..000000000 --- a/.changeset/fluffy-hornets-vanish.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-agents": patch ---- - -voiceassistant: fix llm not having the full chat context on bad interruption timing diff --git a/.changeset/shaggy-onions-kick.md b/.changeset/shaggy-onions-kick.md deleted file mode 100644 index 84a587e0a..000000000 --- a/.changeset/shaggy-onions-kick.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"livekit-plugins-nltk": patch ---- - -fix another semver break diff --git a/examples/simple-color/requirements.txt b/examples/simple-color/requirements.txt index 52b109680..ce10540a4 100644 --- a/examples/simple-color/requirements.txt +++ b/examples/simple-color/requirements.txt @@ -1 +1 @@ -livekit-agents>=0.8.6 +livekit-agents>=0.8.7 diff --git a/examples/speech-to-text/requirements.txt b/examples/speech-to-text/requirements.txt index 4062612df..6e95e7354 100644 --- a/examples/speech-to-text/requirements.txt +++ b/examples/speech-to-text/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.8.6 +livekit-agents>=0.8.7 livekit-plugins-deepgram>=0.6.5 diff --git a/examples/text-to-speech/requirements.txt b/examples/text-to-speech/requirements.txt index 304ff26ff..d73ee0a57 100644 --- a/examples/text-to-speech/requirements.txt +++ b/examples/text-to-speech/requirements.txt @@ -1,2 +1,2 @@ -livekit-agents>=0.8.6 +livekit-agents>=0.8.7 livekit-plugins-openai>=0.8.1 diff --git a/examples/voice-assistant/requirements.txt b/examples/voice-assistant/requirements.txt index f195e1919..bfe1bdd68 100644 --- a/examples/voice-assistant/requirements.txt +++ b/examples/voice-assistant/requirements.txt @@ -1,4 +1,4 @@ -livekit-agents>=0.8.6 +livekit-agents>=0.8.7 livekit-plugins-openai>=0.8.1 livekit-plugins-deepgram>=0.6.5 livekit-plugins-silero>=0.6.4 diff --git a/livekit-agents/CHANGELOG.md b/livekit-agents/CHANGELOG.md index f3afd8faf..e9d25c314 100644 --- a/livekit-agents/CHANGELOG.md +++ b/livekit-agents/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-agents +## 0.8.7 + +### Patch Changes + +- voiceassistant: fix llm not having the full chat context on bad interruption timing - [#659](https://github.com/livekit/agents/pull/659) ([@theomonnom](https://github.com/theomonnom)) + ## 0.8.6 ### Patch Changes diff --git a/livekit-agents/livekit/agents/version.py b/livekit-agents/livekit/agents/version.py index 93af66acd..ac31090ae 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.8.6" +__version__ = "0.8.7" diff --git a/livekit-agents/package.json b/livekit-agents/package.json index e187d781c..d8f5d4838 100644 --- a/livekit-agents/package.json +++ b/livekit-agents/package.json @@ -1,5 +1,5 @@ { "name": "livekit-agents", "private": true, - "version": "0.8.6" + "version": "0.8.7" } diff --git a/livekit-plugins/livekit-plugins-browser/CHANGELOG.md b/livekit-plugins/livekit-plugins-browser/CHANGELOG.md index 1a66bc070..f000991ea 100644 --- a/livekit-plugins/livekit-plugins-browser/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-browser/CHANGELOG.md @@ -1,2 +1,7 @@ # livekit-plugins-browser +## 0.0.2 + +### Patch Changes + +- livekit-plugins-browser: prepare for release - [#659](https://github.com/livekit/agents/pull/659) ([@theomonnom](https://github.com/theomonnom)) diff --git a/livekit-plugins/livekit-plugins-browser/livekit/plugins/browser/version.py b/livekit-plugins/livekit-plugins-browser/livekit/plugins/browser/version.py index 2d00a2393..f3454fa71 100644 --- a/livekit-plugins/livekit-plugins-browser/livekit/plugins/browser/version.py +++ b/livekit-plugins/livekit-plugins-browser/livekit/plugins/browser/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.0.1" +__version__ = "0.0.2" diff --git a/livekit-plugins/livekit-plugins-browser/package.json b/livekit-plugins/livekit-plugins-browser/package.json index 43530c6f5..795a90d4e 100644 --- a/livekit-plugins/livekit-plugins-browser/package.json +++ b/livekit-plugins/livekit-plugins-browser/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-browser", "private": true, - "version": "0.0.1" + "version": "0.0.2" } diff --git a/livekit-plugins/livekit-plugins-nltk/CHANGELOG.md b/livekit-plugins/livekit-plugins-nltk/CHANGELOG.md index 3bfaeb5f9..6ee2124fe 100644 --- a/livekit-plugins/livekit-plugins-nltk/CHANGELOG.md +++ b/livekit-plugins/livekit-plugins-nltk/CHANGELOG.md @@ -1,5 +1,11 @@ # livekit-plugins-nltk +## 0.7.2 + +### Patch Changes + +- fix another semver break - [#659](https://github.com/livekit/agents/pull/659) ([@theomonnom](https://github.com/theomonnom)) + ## 0.7.1 ### Patch Changes diff --git a/livekit-plugins/livekit-plugins-nltk/livekit/plugins/nltk/version.py b/livekit-plugins/livekit-plugins-nltk/livekit/plugins/nltk/version.py index 947379190..d40c15247 100644 --- a/livekit-plugins/livekit-plugins-nltk/livekit/plugins/nltk/version.py +++ b/livekit-plugins/livekit-plugins-nltk/livekit/plugins/nltk/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.7.1" +__version__ = "0.7.2" diff --git a/livekit-plugins/livekit-plugins-nltk/package.json b/livekit-plugins/livekit-plugins-nltk/package.json index a9fbbdac1..66a8eb3fa 100644 --- a/livekit-plugins/livekit-plugins-nltk/package.json +++ b/livekit-plugins/livekit-plugins-nltk/package.json @@ -1,5 +1,5 @@ { "name": "livekit-plugins-nltk", "private": true, - "version": "0.7.1" + "version": "0.7.2" }