diff --git a/CHANGELOG.md b/CHANGELOG.md index b986aadd..2a495d99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,13 +8,20 @@ and this project adheres to ## [Unreleased] +## [1.2.0] - 2026-01-05 + +### Added + - ✨(agent) support Kyutai client for subtitle -- ✨(frontend) remove the beta badge - ✨(all) support starting transcription and recording simultaneously - ✨(backend) persist options on a recording - ✨(all) support choosing the transcription language - ✨(summary) add a download link to the audio/video file - ✨(frontend) allow unprivileged users to request a recording + +### Changed + +- 🚸(frontend) remove the beta badge - ♻️(summary) extract file handling in a robust service - ♻️(all) manage recording state on the backend side diff --git a/src/agents/pyproject.toml b/src/agents/pyproject.toml index 3069bf99..14f8f9a3 100644 --- a/src/agents/pyproject.toml +++ b/src/agents/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "agents" -version = "1.1.0" +version = "1.2.0" requires-python = ">=3.12" dependencies = [ "livekit-agents==1.3.10", diff --git a/src/backend/pyproject.toml b/src/backend/pyproject.toml index 9de9ad18..6246b3f4 100644 --- a/src/backend/pyproject.toml +++ b/src/backend/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta" [project] name = "meet" -version = "1.1.0" +version = "1.2.0" authors = [{ "name" = "DINUM", "email" = "dev@mail.numerique.gouv.fr" }] classifiers = [ "Development Status :: 5 - Production/Stable", diff --git a/src/frontend/package-lock.json b/src/frontend/package-lock.json index be51da7c..834a201f 100644 --- a/src/frontend/package-lock.json +++ b/src/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "meet", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "meet", - "version": "1.1.0", + "version": "1.2.0", "dependencies": { "@fontsource-variable/material-symbols-outlined": "5.2.30", "@fontsource/material-icons-outlined": "5.2.6", diff --git a/src/frontend/package.json b/src/frontend/package.json index 6fd324f8..e2e9e906 100644 --- a/src/frontend/package.json +++ b/src/frontend/package.json @@ -1,7 +1,7 @@ { "name": "meet", "private": true, - "version": "1.1.0", + "version": "1.2.0", "type": "module", "scripts": { "dev": "panda codegen && vite", diff --git a/src/mail/package-lock.json b/src/mail/package-lock.json index 103d8ee4..394bfd55 100644 --- a/src/mail/package-lock.json +++ b/src/mail/package-lock.json @@ -1,12 +1,12 @@ { "name": "mail_mjml", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mail_mjml", - "version": "1.1.0", + "version": "1.2.0", "license": "MIT", "dependencies": { "@html-to/text-cli": "0.5.4", diff --git a/src/mail/package.json b/src/mail/package.json index b9b873ea..be29889e 100644 --- a/src/mail/package.json +++ b/src/mail/package.json @@ -1,6 +1,6 @@ { "name": "mail_mjml", - "version": "1.1.0", + "version": "1.2.0", "description": "An util to generate html and text django's templates from mjml templates", "type": "module", "dependencies": { diff --git a/src/sdk/package-lock.json b/src/sdk/package-lock.json index deeaa7dd..8c27a751 100644 --- a/src/sdk/package-lock.json +++ b/src/sdk/package-lock.json @@ -1,12 +1,12 @@ { "name": "sdk", - "version": "1.1.0", + "version": "1.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "sdk", - "version": "1.1.0", + "version": "1.2.0", "license": "ISC", "workspaces": [ "./library", diff --git a/src/sdk/package.json b/src/sdk/package.json index c0d474c2..f30d4c45 100644 --- a/src/sdk/package.json +++ b/src/sdk/package.json @@ -1,6 +1,6 @@ { "name": "sdk", - "version": "1.1.0", + "version": "1.2.0", "author": "", "license": "ISC", "description": "", diff --git a/src/summary/pyproject.toml b/src/summary/pyproject.toml index 8881f71d..ded3baff 100644 --- a/src/summary/pyproject.toml +++ b/src/summary/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "summary" -version = "1.1.0" +version = "1.2.0" dependencies = [ "fastapi[standard]>=0.105.0", "uvicorn>=0.24.0",