From 8dfb1ff9e0ab5bcb57918a0f4cbf3bcd6f64b254 Mon Sep 17 00:00:00 2001 From: Justin Bennett Date: Wed, 5 Mar 2025 22:28:34 -0500 Subject: [PATCH 1/2] Bump binary version --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/clients/deno/main.ts | 2 +- src/clients/python/src/justbe_webview/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d0afb39..9a29213 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2283,7 +2283,7 @@ dependencies = [ [[package]] name = "webview" -version = "0.3.0" +version = "0.3.1" dependencies = [ "actson", "parking_lot", diff --git a/Cargo.toml b/Cargo.toml index 90dbde1..489953c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "webview" -version = "0.3.0" +version = "0.3.1" edition = "2021" [profile.release] diff --git a/src/clients/deno/main.ts b/src/clients/deno/main.ts index 7b0407b..a3622b2 100644 --- a/src/clients/deno/main.ts +++ b/src/clients/deno/main.ts @@ -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, diff --git a/src/clients/python/src/justbe_webview/__init__.py b/src/clients/python/src/justbe_webview/__init__.py index 0bbcd5a..84651d8 100644 --- a/src/clients/python/src/justbe_webview/__init__.py +++ b/src/clients/python/src/justbe_webview/__init__.py @@ -48,7 +48,7 @@ ) # Constants -BIN_VERSION = "0.3.0" +BIN_VERSION = "0.3.1" T = TypeVar("T", bound=WebViewNotification) From ee959910b1e6e7542029623080b8e69fb9fae323 Mon Sep 17 00:00:00 2001 From: Justin Bennett Date: Wed, 5 Mar 2025 22:31:42 -0500 Subject: [PATCH 2/2] bump deno and python versions; add changelog entry --- CHANGELOG.md | 5 +++++ src/clients/deno/deno.json | 2 +- src/clients/python/pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beffd4d..1afd57e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/src/clients/deno/deno.json b/src/clients/deno/deno.json index 1fd64f7..fa8b8eb 100644 --- a/src/clients/deno/deno.json +++ b/src/clients/deno/deno.json @@ -2,7 +2,7 @@ "name": "@justbe/webview", "exports": "./main.ts", "license": "MIT", - "version": "1.0.1-rc.1", + "version": "1.0.1-rc.2", "publish": { "include": ["README.md", "LICENSE", "*.ts", "schemas/*.ts"] }, diff --git a/src/clients/python/pyproject.toml b/src/clients/python/pyproject.toml index 119c429..a4b63d4 100644 --- a/src/clients/python/pyproject.toml +++ b/src/clients/python/pyproject.toml @@ -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"