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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 0.0.4 Python Client; 1.0.1-rc.2 Deno Client; 0.3.1 binary -- 2025-03-05

- Fixed a bug that caused webview to fail to open on linux
- Upgraded various native dependencies

## 0.0.3 Python Client -- 2025-03-01

- Fixed a bug where the windows binary path was still incorrect (thanks @daidalvi)
Expand Down
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 = "webview"
version = "0.3.0"
version = "0.3.1"
edition = "2021"

[profile.release]
Expand Down
2 changes: 1 addition & 1 deletion src/clients/deno/deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@justbe/webview",
"exports": "./main.ts",
"license": "MIT",
"version": "1.0.1-rc.1",
"version": "1.0.1-rc.2",
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Noticed I screwed this version up last time 😓. Instead of 1.0.1-rc.1 it should've been 1.0.0-rc.2

"publish": {
"include": ["README.md", "LICENSE", "*.ts", "schemas/*.ts"]
},
Expand Down
2 changes: 1 addition & 1 deletion src/clients/deno/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ if (

// Should match the cargo package version
/** The version of the webview binary that's expected */
export const BIN_VERSION = "0.3.0";
export const BIN_VERSION = "0.3.1";

type WebViewNotification = Extract<
Message,
Expand Down
2 changes: 1 addition & 1 deletion src/clients/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 = "justbe-webview"
version = "0.0.3"
version = "0.0.4"
description = "A simple webview client"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/clients/python/src/justbe_webview/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
)

# Constants
BIN_VERSION = "0.3.0"
BIN_VERSION = "0.3.1"

T = TypeVar("T", bound=WebViewNotification)

Expand Down