diff --git a/Cargo.lock b/Cargo.lock index 299d0ec..34f1c62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -779,7 +779,7 @@ dependencies = [ [[package]] name = "shell-use" -version = "0.0.1-beta.3" +version = "0.0.1-beta.4" dependencies = [ "alacritty_terminal", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index b15c516..bdebf5e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "shell-use" -version = "0.0.1-beta.3" +version = "0.0.1-beta.4" edition = "2021" description = "A headless terminal CLI + daemon for driving, asserting on, and recording shells" license = "MIT" diff --git a/bindings/js/package-lock.json b/bindings/js/package-lock.json index 773b1db..97741f0 100644 --- a/bindings/js/package-lock.json +++ b/bindings/js/package-lock.json @@ -1,12 +1,12 @@ { "name": "@microsoft/shell-use", - "version": "0.0.1-beta.3", + "version": "0.0.1-beta.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@microsoft/shell-use", - "version": "0.0.1-beta.3", + "version": "0.0.1-beta.4", "license": "MIT", "devDependencies": { "@types/node": "^20.14.0", diff --git a/bindings/js/package.json b/bindings/js/package.json index 78d51ac..47bd462 100644 --- a/bindings/js/package.json +++ b/bindings/js/package.json @@ -1,6 +1,6 @@ { "name": "@microsoft/shell-use", - "version": "0.0.1-beta.3", + "version": "0.0.1-beta.4", "description": "Node client for the shell-use terminal daemon", "type": "module", "exports": { diff --git a/bindings/js/src/version.ts b/bindings/js/src/version.ts index d4f0e92..27187d6 100644 --- a/bindings/js/src/version.ts +++ b/bindings/js/src/version.ts @@ -1,6 +1,6 @@ import { VersionMismatchError } from "./errors.js"; -export const VERSION = "0.0.1-beta.3"; +export const VERSION = "0.0.1-beta.4"; export function checkVersion(daemonVersion: string | undefined): void { if (daemonVersion !== VERSION) { diff --git a/bindings/python/pyproject.toml b/bindings/python/pyproject.toml index 6306e96..8e4bce7 100644 --- a/bindings/python/pyproject.toml +++ b/bindings/python/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "shell-use" -version = "0.0.1-beta.3" +version = "0.0.1-beta.4" description = "Python client for the shell-use terminal daemon" readme = "README.md" requires-python = ">=3.8" diff --git a/bindings/python/src/shell_use/_config.py b/bindings/python/src/shell_use/_config.py index 09440c5..2770875 100644 --- a/bindings/python/src/shell_use/_config.py +++ b/bindings/python/src/shell_use/_config.py @@ -5,7 +5,7 @@ from pathlib import Path from typing import Optional -VERSION = "0.0.1-beta.3" +VERSION = "0.0.1-beta.4" DEFAULT_COLS = 80 DEFAULT_ROWS = 30