Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shell-use"
version = "0.0.1-beta.2"
version = "0.0.1-beta.3"
edition = "2021"
description = "A headless terminal CLI + daemon for driving, asserting on, and recording shells"
license = "MIT"
Expand Down
4 changes: 2 additions & 2 deletions bindings/js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bindings/js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@microsoft/shell-use",
"version": "0.0.1-beta.2",
"version": "0.0.1-beta.3",
"description": "Node client for the shell-use terminal daemon",
"type": "module",
"exports": {
Expand Down
2 changes: 1 addition & 1 deletion bindings/js/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { VersionMismatchError } from "./errors.js";

export const VERSION = "0.0.1-beta.2";
export const VERSION = "0.0.1-beta.3";

export function checkVersion(daemonVersion: string | undefined): void {
if (daemonVersion !== VERSION) {
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "shell-use"
version = "0.0.1-beta.2"
version = "0.0.1-beta.3"
description = "Python client for the shell-use terminal daemon"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/src/shell_use/_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from pathlib import Path
from typing import Optional

VERSION = "0.0.1-beta.2"
VERSION = "0.0.1-beta.3"

DEFAULT_COLS = 80
DEFAULT_ROWS = 30
Expand Down
Loading