From 791d1c10d11228beadfe0706985819f8f576d84a Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Thu, 21 Nov 2024 14:44:59 -0800 Subject: [PATCH] 1.8.0 --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- package-lock.json | 4 ++-- package.json | 2 +- src/jco.js | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 320e442ce..b1df23083 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -243,14 +243,14 @@ checksum = "7a73e9fe3c49d7afb2ace819fa181a287ce54a0983eda4e0eb05c22f82ffe534" [[package]] name = "jco" -version = "1.7.2" +version = "1.8.0" dependencies = [ "anyhow", ] [[package]] name = "js-component-bindgen" -version = "1.7.2" +version = "1.8.0" dependencies = [ "anyhow", "base64", @@ -267,7 +267,7 @@ dependencies = [ [[package]] name = "js-component-bindgen-component" -version = "1.7.2" +version = "1.8.0" dependencies = [ "anyhow", "js-component-bindgen", diff --git a/Cargo.toml b/Cargo.toml index eca253abd..9edbdeccb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ resolver = "2" [workspace.package] edition = "2021" -version = "1.7.2" +version = "1.8.0" [profile.release] codegen-units = 1 diff --git a/package-lock.json b/package-lock.json index 78e8db91e..3d50983a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@bytecodealliance/jco", - "version": "1.7.2", + "version": "1.8.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@bytecodealliance/jco", - "version": "1.7.2", + "version": "1.8.0", "license": "(Apache-2.0 WITH LLVM-exception)", "workspaces": [ "packages/preview2-shim" diff --git a/package.json b/package.json index e20b1f070..3828af5fc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@bytecodealliance/jco", - "version": "1.7.2", + "version": "1.8.0", "description": "JavaScript tooling for working with WebAssembly Components", "author": "Guy Bedford", "bin": { diff --git a/src/jco.js b/src/jco.js index 9237c5435..e40fcdb83 100755 --- a/src/jco.js +++ b/src/jco.js @@ -11,7 +11,7 @@ program .name('jco') .description(c`{bold jco - WebAssembly JS Component Tools}\n JS Component Transpilation Bindgen & Wasm Tools for JS`) .usage(' [options]') - .version('1.7.2'); + .version('1.8.0'); function myParseInt(value) { return parseInt(value, 10);