@@ -82,7 +82,7 @@ const WASMEDGE_ROOT_DIR_NAME: &str = {
82
82
".wasmedge"
83
83
}
84
84
#[ cfg( windows) ] {
85
- "WasmEdge-0.14.0 -Windows"
85
+ "WasmEdge-0.14.1 -Windows"
86
86
}
87
87
} ;
88
88
@@ -356,7 +356,7 @@ fn find_wasmedge_dylibs_in_dir<P: AsRef<Path>>(wasmedge_root_dir: P) -> Option<(
356
356
#[ cfg( any( target_os = "linux" , target_os = "macos" ) ) ]
357
357
fn install_wasmedge < P : AsRef < Path > > ( install_path : P ) -> Result < PathBuf , std:: io:: Error > {
358
358
use std:: process:: Stdio ;
359
- println ! ( "Downloading WasmEdge 0.14.0 from GitHub; installing to {}" , install_path. as_ref( ) . display( ) ) ;
359
+ println ! ( "Downloading WasmEdge 0.14.1 from GitHub; installing to {}" , install_path. as_ref( ) . display( ) ) ;
360
360
let temp_dir = std:: env:: temp_dir ( ) ;
361
361
let curl_script_cmd = Command :: new ( "curl" )
362
362
. stdout ( Stdio :: piped ( ) )
@@ -371,7 +371,7 @@ fn install_wasmedge<P: AsRef<Path>>(install_path: P) -> Result<PathBuf, std::io:
371
371
. stdin ( Stdio :: from ( curl_script_cmd. stdout . expect ( "failed to pipe curl stdout into bash stdin" ) ) )
372
372
. arg ( "-s" )
373
373
. arg ( "--" )
374
- . arg ( "--version=0.14.0 " )
374
+ . arg ( "--version=0.14.1 " )
375
375
. arg ( & format ! ( "--path={}" , install_path. as_ref( ) . display( ) ) )
376
376
// The default `/tmp/` dir used in `install_v2.sh` isn't always accessible to bundled apps.
377
377
. arg ( & format ! ( "--tmpdir={}" , temp_dir. display( ) ) ) ;
@@ -423,18 +423,18 @@ fn install_wasmedge<P: AsRef<Path>>(install_path: P) -> Result<PathBuf, std::io:
423
423
#[ cfg( windows) ]
424
424
fn install_wasmedge < P : AsRef < Path > > ( install_path_ref : P ) -> Result < PathBuf , std:: io:: Error > {
425
425
let install_path = install_path_ref. as_ref ( ) ;
426
- println ! ( "Downloading WasmEdge 0.14.0 from GitHub; installing to {}" , install_path. display( ) ) ;
426
+ println ! ( "Downloading WasmEdge 0.14.1 from GitHub; installing to {}" , install_path. display( ) ) ;
427
427
428
- // Currently we hardcode the URL for the v0.14.0 release of WasmEdge for windows.
429
- const WASMEDGE_0_14_0_WINDOWS_URL : & ' static str = "https://github.com/WasmEdge/WasmEdge/releases/download/0.14.0 /WasmEdge-0.14.0 -windows.zip" ;
428
+ // Currently we hardcode the URL for the v0.14.1 release of WasmEdge for windows.
429
+ const WASMEDGE_0_14_0_WINDOWS_URL : & ' static str = "https://github.com/WasmEdge/WasmEdge/releases/download/0.14.1 /WasmEdge-0.14.1 -windows.zip" ;
430
430
let ( wasi_nn_plugin_url, wasi_nn_dir_name) = wasmedge_wasi_nn_plugin_url ( ) ;
431
431
println ! ( " --> Using WASI-NN plugin at: {wasi_nn_plugin_url}" ) ;
432
432
433
433
let install_wasmedge_ps1 = format ! (
434
434
r#"
435
435
$ProgressPreference = 'SilentlyContinue' ## makes downloads much faster
436
- Invoke-WebRequest -Uri "{WASMEDGE_0_14_0_WINDOWS_URL}" -OutFile "$env:TEMP\WasmEdge-0.14.0 -windows.zip"
437
- Expand-Archive -Force -Path "$env:TEMP\WasmEdge-0.14.0 -windows.zip" -DestinationPath "{}"
436
+ Invoke-WebRequest -Uri "{WASMEDGE_0_14_0_WINDOWS_URL}" -OutFile "$env:TEMP\WasmEdge-0.14.1 -windows.zip"
437
+ Expand-Archive -Force -Path "$env:TEMP\WasmEdge-0.14.1 -windows.zip" -DestinationPath "{}"
438
438
439
439
Invoke-WebRequest -Uri "{wasi_nn_plugin_url}" -OutFile "$env:TEMP\{wasi_nn_dir_name}.zip"
440
440
Expand-Archive -Force -Path "$env:TEMP\{wasi_nn_dir_name}.zip" -DestinationPath "$env:TEMP\{wasi_nn_dir_name}"
@@ -598,7 +598,7 @@ fn run_moly() -> std::io::Result<()> {
598
598
599
599
600
600
/// Checks that the current CPU supports AVX512, or either SSE4.2 or SSE4a,
601
- /// at least one of which is required by the current builds of WasmEdge 0.14.0 on Windows.
601
+ /// at least one of which is required by the current builds of WasmEdge 0.14.1 on Windows.
602
602
///
603
603
/// This only checks x86_64 platforms, and does nothing on other platforms.
604
604
fn assert_cpu_features ( ) {
0 commit comments