diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 59562f12..8ce6ca82 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag = True tag_name = v{new_version} diff --git a/app/package.json b/app/package.json index 4198caeb..aaa054c3 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "name": "@voicebox/app", - "version": "0.1.0", + "version": "0.1.1", "private": true, "type": "module", "scripts": { diff --git a/backend/main.py b/backend/main.py index 33f0aa1e..cfd36a61 100644 --- a/backend/main.py +++ b/backend/main.py @@ -47,7 +47,7 @@ app.add_middleware( @app.get("/") async def root(): """Root endpoint.""" - return {"message": "voicebox API", "version": "0.1.0"} + return {"message": "voicebox API", "version": "0.1.1"} @app.get("/health", response_model=models.HealthResponse) diff --git a/landing/package.json b/landing/package.json index 45b541dd..80a65df5 100644 --- a/landing/package.json +++ b/landing/package.json @@ -1,6 +1,6 @@ { "name": "@voicebox/landing", - "version": "0.1.0", + "version": "0.1.1", "description": "Landing page for voicebox.sh", "scripts": { "dev": "bun --bun next dev --turbo", diff --git a/package.json b/package.json index 04c9ea5e..ce8e58b5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "voicebox", - "version": "0.1.0", + "version": "0.1.1", "private": true, "workspaces": [ "app", diff --git a/tauri/package.json b/tauri/package.json index 99457225..b0e8ae08 100644 --- a/tauri/package.json +++ b/tauri/package.json @@ -1,7 +1,7 @@ { "name": "@voicebox/tauri", "private": true, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "scripts": { "dev": "vite", diff --git a/tauri/src-tauri/Cargo.toml b/tauri/src-tauri/Cargo.toml index 4f484c9d..af850d02 100644 --- a/tauri/src-tauri/Cargo.toml +++ b/tauri/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "voicebox" -version = "0.1.0" +version = "0.1.1" description = "A production-quality desktop app for Qwen3-TTS voice cloning and generation" authors = ["you"] license = "" diff --git a/tauri/src-tauri/tauri.conf.json b/tauri/src-tauri/tauri.conf.json index 83cc9445..d0ea9c2c 100644 --- a/tauri/src-tauri/tauri.conf.json +++ b/tauri/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "Voicebox", - "version": "0.1.0", + "version": "0.1.1", "identifier": "sh.voicebox.app", "build": { "beforeDevCommand": "bun run dev", diff --git a/web/package.json b/web/package.json index 63c132c4..d382ebdf 100644 --- a/web/package.json +++ b/web/package.json @@ -1,7 +1,7 @@ { "name": "@voicebox/web", "private": true, - "version": "0.1.0", + "version": "0.1.1", "type": "module", "scripts": { "dev": "vite",