diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 566f65211..fb3cf3df9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -127,6 +127,7 @@ jobs: cargo install wasm-opt --version $WASM_OPT_VERSION --locked cargo build -p typegraph_core --target wasm32-unknown-unknown --target-dir target/wasm --release + mkdir -p $(dirname $WASM_FILE) wasm-opt -Oz target/wasm/wasm32-unknown-unknown/release/typegraph_core.wasm -o $WASM_FILE.opt wasm-tools component new $WASM_FILE.opt -o $WASM_FILE diff --git a/Cargo.lock b/Cargo.lock index d232b056c..9898e840d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1297,7 +1297,7 @@ dependencies = [ [[package]] name = "common" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "base64 0.21.5", @@ -5345,7 +5345,7 @@ dependencies = [ [[package]] name = "meta-cli" -version = "0.3.0" +version = "0.3.1" dependencies = [ "actix", "anyhow", @@ -5673,7 +5673,7 @@ dependencies = [ [[package]] name = "mt_deno" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "deno", @@ -10756,7 +10756,7 @@ dependencies = [ [[package]] name = "typegate" -version = "0.3.0" +version = "0.3.1" dependencies = [ "colored", "common", @@ -10769,7 +10769,7 @@ dependencies = [ [[package]] name = "typegate_engine" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "base64 0.21.5", @@ -10808,7 +10808,7 @@ dependencies = [ [[package]] name = "typegraph_core" -version = "0.3.0" +version = "0.3.1" dependencies = [ "common", "enum_dispatch", @@ -10835,7 +10835,7 @@ checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825" [[package]] name = "typescript" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "dprint-plugin-typescript 0.87.1", @@ -11958,7 +11958,7 @@ checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546" [[package]] name = "xtask" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 449fbac49..f26572ff3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ ] [workspace.package] -version = "0.3.0" +version = "0.3.1" edition = "2021" [workspace.dependencies] diff --git a/dev/lock.yml b/dev/lock.yml index fb1144474..b11555565 100644 --- a/dev/lock.yml +++ b/dev/lock.yml @@ -69,7 +69,7 @@ dev: WASMEDGE_VERSION: 0.12.1 TYPEGRAPH_VERSION: 0.0.3 PRISMA_VERSION: 5.5.2 - METATYPE_VERSION: 0.3.0 + METATYPE_VERSION: 0.3.1 PUBLISHED_VERSION: 0.2.4 WASM_OPT_VERSION: 0.116.0 TAGLINE: >- diff --git a/examples/templates/deno/compose.yml b/examples/templates/deno/compose.yml index 03b6082c7..c16557f6a 100644 --- a/examples/templates/deno/compose.yml +++ b/examples/templates/deno/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.3.0 + image: ghcr.io/metatypedev/typegate:v0.3.1 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/compose.yml b/examples/templates/node/compose.yml index 03b6082c7..c16557f6a 100644 --- a/examples/templates/node/compose.yml +++ b/examples/templates/node/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.3.0 + image: ghcr.io/metatypedev/typegate:v0.3.1 restart: always ports: - "7890:7890" diff --git a/examples/templates/python/compose.yml b/examples/templates/python/compose.yml index 03b6082c7..c16557f6a 100644 --- a/examples/templates/python/compose.yml +++ b/examples/templates/python/compose.yml @@ -1,6 +1,6 @@ services: typegate: - image: ghcr.io/metatypedev/typegate:v0.3.0 + image: ghcr.io/metatypedev/typegate:v0.3.1 restart: always ports: - "7890:7890" diff --git a/examples/templates/python/pyproject.toml b/examples/templates/python/pyproject.toml index 757d4ccba..febdde436 100644 --- a/examples/templates/python/pyproject.toml +++ b/examples/templates/python/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "example" -version = "0.3.0" +version = "0.3.1" description = "" authors = [] [tool.poetry.dependencies] python = ">=3.8,<4.0" -typegraph = "0.3.0" +typegraph = "0.3.1" [build-system] requires = ["poetry-core"] diff --git a/libs/common/Cargo.toml b/libs/common/Cargo.toml index 4d5e532dd..f547af413 100644 --- a/libs/common/Cargo.toml +++ b/libs/common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "common" -version = "0.3.0" +version = "0.3.1" edition = "2021" [dependencies] diff --git a/libs/typescript/Cargo.toml b/libs/typescript/Cargo.toml index 3401523f4..f925f17d1 100644 --- a/libs/typescript/Cargo.toml +++ b/libs/typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typescript" -version = "0.3.0" +version = "0.3.1" edition = "2021" [dependencies] diff --git a/libs/xtask/Cargo.toml b/libs/xtask/Cargo.toml index a19f0a93d..88f351758 100644 --- a/libs/xtask/Cargo.toml +++ b/libs/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.3.0" +version = "0.3.1" edition = "2021" [dependencies] diff --git a/meta-cli/Cargo.toml b/meta-cli/Cargo.toml index d4d931677..429fcabfc 100644 --- a/meta-cli/Cargo.toml +++ b/meta-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "meta-cli" -version = "0.3.0" +version = "0.3.1" edition = "2021" description = "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are." diff --git a/pyproject.toml b/pyproject.toml index 745a5de0f..48604d8c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "metatype" -version = "0.3.0" +version = "0.3.1" description = "" authors = [] diff --git a/typegate/tests/runtimes/wasmedge/rust/Cargo.toml b/typegate/tests/runtimes/wasmedge/rust/Cargo.toml index 2afcba2b9..c46d3180c 100644 --- a/typegate/tests/runtimes/wasmedge/rust/Cargo.toml +++ b/typegate/tests/runtimes/wasmedge/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust" -version = "0.3.0" +version = "0.3.1" edition = "2021" [lib] diff --git a/typegraph/core/Cargo.toml b/typegraph/core/Cargo.toml index 847d79d62..789cf63b5 100644 --- a/typegraph/core/Cargo.toml +++ b/typegraph/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typegraph_core" -version = "0.3.0" +version = "0.3.1" edition = "2021" [lib] diff --git a/typegraph/python/pyproject.toml b/typegraph/python/pyproject.toml index 92cdbef4c..12bfbdd1b 100644 --- a/typegraph/python/pyproject.toml +++ b/typegraph/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typegraph" -version = "0.3.0" +version = "0.3.1" description = "Declarative API development platform. Build serverless backends with zero-trust and less code, no matter where and how your (legacy) systems are." authors = ["Metatype Contributors "] license = "MPL-2.0" diff --git a/typegraph/python/typegraph/__init__.py b/typegraph/python/typegraph/__init__.py index df28a29c0..536b0daee 100644 --- a/typegraph/python/typegraph/__init__.py +++ b/typegraph/python/typegraph/__init__.py @@ -5,4 +5,4 @@ from typegraph.policy import Policy # noqa from typegraph import effects as fx # noqa -version = "0.3.0" +version = "0.3.1"