Skip to content

Commit 639d53f

Browse files
committed
update plugin version to 0.9.0
1 parent ae89c8a commit 639d53f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

examples/simple_example.jl

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
using Webview
2+
3+
# Create a webview instance
4+
wv = Webview.Webview(true)
5+
6+
# Run the webview
7+
Webview.run(wv)

src/webview/_webview_ffi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def _encode_c_string(s: str) -> bytes:
1212

1313
def _get_webview_version():
1414
"""Get webview version from environment variable or use default"""
15-
return os.getenv("WEBVIEW_VERSION", "0.8.1")
15+
return os.getenv("WEBVIEW_VERSION", "0.9.0")
1616

1717
def _get_lib_names():
1818
"""Get platform-specific library names."""

0 commit comments

Comments
 (0)