summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Gressmann <mail@henrygressmann.de>2024-05-15 13:47:31 +0200
committerHenry Gressmann <mail@henrygressmann.de>2024-05-15 13:47:31 +0200
commiteb6f7c72789177ce1ce9c9aa0d5e7468507ff18d (patch)
tree5e5196cad063240c237c6927420dd3dd76b3ae99
parent41d0ff6c2cd731f62492f1841bb8887991df17b4 (diff)
Release 0.7.0
tinywasm@0.7.0 tinywasm-cli@0.7.0 tinywasm-parser@0.7.0 tinywasm-types@0.7.0 Generated by cargo-workspaces
-rw-r--r--Cargo.lock8
-rw-r--r--Cargo.toml2
-rw-r--r--crates/cli/Cargo.toml2
-rw-r--r--crates/parser/Cargo.toml2
-rw-r--r--crates/tinywasm/Cargo.toml4
5 files changed, 9 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3f38395..0703613 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2407,7 +2407,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tinywasm"
-version = "0.6.1"
+version = "0.7.0"
dependencies = [
"eyre",
"libm",
@@ -2424,7 +2424,7 @@ dependencies = [
[[package]]
name = "tinywasm-cli"
-version = "0.6.1"
+version = "0.7.0"
dependencies = [
"argh",
"color-eyre",
@@ -2436,7 +2436,7 @@ dependencies = [
[[package]]
name = "tinywasm-parser"
-version = "0.6.1"
+version = "0.7.0"
dependencies = [
"log",
"tinywasm-types",
@@ -2455,7 +2455,7 @@ dependencies = [
[[package]]
name = "tinywasm-types"
-version = "0.6.1"
+version = "0.7.0"
dependencies = [
"bytecheck 0.7.0",
"log",
diff --git a/Cargo.toml b/Cargo.toml
index 37dd86c..58ded7c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@ panic="abort"
inherits="release"
[workspace.package]
-version="0.6.1"
+version="0.7.0"
edition="2021"
license="MIT OR Apache-2.0"
authors=["Henry Gressmann <mail@henrygressmann.de>"]
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml
index 3c4657d..4aa9cd0 100644
--- a/crates/cli/Cargo.toml
+++ b/crates/cli/Cargo.toml
@@ -14,7 +14,7 @@ path="src/bin.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-tinywasm={version="0.6.0", path="../tinywasm", features=["std", "parser"]}
+tinywasm={version="0.7.0", path="../tinywasm", features=["std", "parser"]}
argh="0.1"
color-eyre={version="0.6", default-features=false}
log="0.4"
diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml
index 73f430b..206a9ed 100644
--- a/crates/parser/Cargo.toml
+++ b/crates/parser/Cargo.toml
@@ -10,7 +10,7 @@ repository.workspace=true
[dependencies]
wasmparser={version="0.207", default-features=false, features=["validate"]}
log={version="0.4", optional=true}
-tinywasm-types={version="0.6.0", path="../types", default-features=false}
+tinywasm-types={version="0.7.0", path="../types", default-features=false}
[features]
default=["std", "logging"]
diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml
index ffd8ac9..ca6b723 100644
--- a/crates/tinywasm/Cargo.toml
+++ b/crates/tinywasm/Cargo.toml
@@ -14,8 +14,8 @@ path="src/lib.rs"
[dependencies]
_log={version="0.4", optional=true, package="log"}
-tinywasm-parser={version="0.6.0", path="../parser", default-features=false, optional=true}
-tinywasm-types={version="0.6.0", path="../types", default-features=false}
+tinywasm-parser={version="0.7.0", path="../parser", default-features=false, optional=true}
+tinywasm-types={version="0.7.0", path="../types", default-features=false}
libm={version="0.2", default-features=false}
[dev-dependencies]