diff --git a/Cargo.lock b/Cargo.lock index a00d99ddc..658d11491 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1591,7 +1591,7 @@ dependencies = [ [[package]] name = "common" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "async-trait", @@ -6883,7 +6883,7 @@ dependencies = [ [[package]] name = "meta-cli" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "actix", "assert_cmd", @@ -6950,7 +6950,7 @@ dependencies = [ [[package]] name = "metagen" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "color-eyre", "common", @@ -6973,7 +6973,7 @@ dependencies = [ [[package]] name = "metagen-client" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "derive_more 1.0.0", "futures", @@ -7324,7 +7324,7 @@ dependencies = [ [[package]] name = "mt_deno" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "deno", @@ -10148,7 +10148,7 @@ dependencies = [ [[package]] name = "sample_client" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "metagen-client", "serde", @@ -10158,7 +10158,7 @@ dependencies = [ [[package]] name = "sample_client_upload" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "metagen-client", "serde", @@ -11310,7 +11310,7 @@ dependencies = [ [[package]] name = "substantial" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "chrono", @@ -12801,7 +12801,7 @@ dependencies = [ [[package]] name = "typegate" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "colored", "env_logger 0.11.0", @@ -12814,7 +12814,7 @@ dependencies = [ [[package]] name = "typegate_engine" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "base64 0.22.1", @@ -12859,7 +12859,7 @@ dependencies = [ [[package]] name = "typegraph_core" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "color-eyre", @@ -14645,7 +14645,7 @@ checksum = "791978798f0597cfc70478424c2b4fdc2b7a8024aaff78497ef00f24ef674193" [[package]] name = "xtask" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c2fe2c3b1..40a4a340b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ exclude = [ ] [workspace.package] -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" edition = "2021" [workspace.dependencies] diff --git a/examples/templates/deno/api/example.ts b/examples/templates/deno/api/example.ts index d2cdb2aa5..84ed8f73f 100644 --- a/examples/templates/deno/api/example.ts +++ b/examples/templates/deno/api/example.ts @@ -1,6 +1,6 @@ import { Policy, t, typegraph } from "jsr:@typegraph/sdk@0.5.0-rc.7"; -import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.8/runtimes/python"; -import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.8/runtimes/deno"; +import { PythonRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.9/runtimes/python"; +import { DenoRuntime } from "jsr:@typegraph/sdk@0.5.0-rc.9/runtimes/deno"; await typegraph("example", (g) => { const pub = Policy.public(); diff --git a/examples/templates/deno/compose.yml b/examples/templates/deno/compose.yml index 30ba2eef2..53edad51d 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.5.0-rc.8 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.9 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/compose.yml b/examples/templates/node/compose.yml index 617178f53..9aabef09c 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.5.0-rc.8 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.9 restart: always ports: - "7890:7890" diff --git a/examples/templates/node/package.json b/examples/templates/node/package.json index 27c67864a..db711383a 100644 --- a/examples/templates/node/package.json +++ b/examples/templates/node/package.json @@ -6,7 +6,7 @@ "dev": "MCLI_LOADER_CMD='npm x tsx' meta dev" }, "dependencies": { - "@typegraph/sdk": "^0.5.0-rc.8" + "@typegraph/sdk": "^0.5.0-rc.9" }, "devDependencies": { "tsx": "^3.13.0", diff --git a/examples/templates/python/compose.yml b/examples/templates/python/compose.yml index 617178f53..9aabef09c 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.5.0-rc.8 + image: ghcr.io/metatypedev/typegate:v0.5.0-rc.9 restart: always ports: - "7890:7890" diff --git a/examples/templates/python/pyproject.toml b/examples/templates/python/pyproject.toml index 41d63cb7e..15596621e 100644 --- a/examples/templates/python/pyproject.toml +++ b/examples/templates/python/pyproject.toml @@ -1,12 +1,12 @@ [tool.poetry] name = "example" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" description = "" authors = [] [tool.poetry.dependencies] python = ">=3.8,<4.0" -typegraph = "0.5.0-rc.8" +typegraph = "0.5.0-rc.9" [build-system] requires = ["poetry-core"] diff --git a/pyproject.toml b/pyproject.toml index 31d03e64d..3ed96e97d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ [tool.poetry] name = "metatype" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" description = "" authors = [] diff --git a/src/pyrt_wit_wire/pyproject.toml b/src/pyrt_wit_wire/pyproject.toml index 2e9a66de5..d7033da20 100644 --- a/src/pyrt_wit_wire/pyproject.toml +++ b/src/pyrt_wit_wire/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyrt_wit_wire" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" description = "Wasm component implementing the PythonRuntime host using wit_wire protocol." license = "MPL-2.0" readme = "README.md" diff --git a/src/typegate/src/runtimes/wit_wire/mod.ts b/src/typegate/src/runtimes/wit_wire/mod.ts index 49303d731..4174b2f9f 100644 --- a/src/typegate/src/runtimes/wit_wire/mod.ts +++ b/src/typegate/src/runtimes/wit_wire/mod.ts @@ -9,7 +9,7 @@ import { getLogger } from "../../log.ts"; const logger = getLogger(import.meta); -const METATYPE_VERSION = "0.5.0-rc.8"; +const METATYPE_VERSION = "0.5.0-rc.9"; export class WitWireMessenger { static async init( diff --git a/src/typegraph/core/Cargo.toml b/src/typegraph/core/Cargo.toml index 3ed60f8a4..eadd6d7ce 100644 --- a/src/typegraph/core/Cargo.toml +++ b/src/typegraph/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typegraph_core" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" edition = "2021" [lib] diff --git a/src/typegraph/core/src/global_store.rs b/src/typegraph/core/src/global_store.rs index 700770420..b09b4a3a6 100644 --- a/src/typegraph/core/src/global_store.rs +++ b/src/typegraph/core/src/global_store.rs @@ -108,7 +108,7 @@ const PREDEFINED_DENO_FUNCTIONS: &[&str] = &["identity", "true"]; thread_local! { pub static STORE: RefCell = RefCell::new(Store::new()); - pub static SDK_VERSION: String = "0.5.0-rc.8".to_owned(); + pub static SDK_VERSION: String = "0.5.0-rc.9".to_owned(); } fn with_store T>(f: F) -> T { diff --git a/src/typegraph/deno/deno.json b/src/typegraph/deno/deno.json index 2dca8389f..0b0ea829e 100644 --- a/src/typegraph/deno/deno.json +++ b/src/typegraph/deno/deno.json @@ -1,6 +1,6 @@ { "name": "@typegraph/sdk", - "version": "0.5.0-rc.8", + "version": "0.5.0-rc.9", "publish": { "exclude": [ "!src/gen", diff --git a/src/typegraph/python/pyproject.toml b/src/typegraph/python/pyproject.toml index e8488d598..921b7e608 100644 --- a/src/typegraph/python/pyproject.toml +++ b/src/typegraph/python/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "typegraph" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are." authors = ["Metatype Contributors "] license = "MPL-2.0" diff --git a/src/typegraph/python/typegraph/__init__.py b/src/typegraph/python/typegraph/__init__.py index 519178237..c88a4adc4 100644 --- a/src/typegraph/python/typegraph/__init__.py +++ b/src/typegraph/python/typegraph/__init__.py @@ -5,4 +5,4 @@ from typegraph.policy import Policy # noqa from typegraph import effects as fx # noqa -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" diff --git a/src/xtask/Cargo.toml b/src/xtask/Cargo.toml index 82009aec6..49320dbf5 100644 --- a/src/xtask/Cargo.toml +++ b/src/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" edition = "2021" # this allows us to exclude the rust files diff --git a/tests/metagen/__snapshots__/metagen_test.ts.snap b/tests/metagen/__snapshots__/metagen_test.ts.snap index 954bcd726..76e6d03fa 100644 --- a/tests/metagen/__snapshots__/metagen_test.ts.snap +++ b/tests/metagen/__snapshots__/metagen_test.ts.snap @@ -454,7 +454,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.8"; + static MT_VERSION: &str = "0.5.0-rc.9"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } @@ -1255,7 +1255,7 @@ impl Router { } pub fn init(&self, args: InitArgs) -> Result { - static MT_VERSION: &str = "0.5.0-rc.8"; + static MT_VERSION: &str = "0.5.0-rc.9"; if args.metatype_version != MT_VERSION { return Err(InitError::VersionMismatch(MT_VERSION.into())); } diff --git a/tests/metagen/typegraphs/sample/rs/Cargo.toml b/tests/metagen/typegraphs/sample/rs/Cargo.toml index 080341baa..40b12ca2c 100644 --- a/tests/metagen/typegraphs/sample/rs/Cargo.toml +++ b/tests/metagen/typegraphs/sample/rs/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sample_client" edition = "2021" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" [dependencies] metagen-client.workspace = true diff --git a/tests/metagen/typegraphs/sample/rs_upload/Cargo.toml b/tests/metagen/typegraphs/sample/rs_upload/Cargo.toml index 69a4f9e50..9855c0e56 100644 --- a/tests/metagen/typegraphs/sample/rs_upload/Cargo.toml +++ b/tests/metagen/typegraphs/sample/rs_upload/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "sample_client_upload" edition = "2021" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" [dependencies] metagen-client.workspace = true diff --git a/tests/runtimes/wasm_reflected/rust/Cargo.toml b/tests/runtimes/wasm_reflected/rust/Cargo.toml index 57560b412..7723fac0c 100644 --- a/tests/runtimes/wasm_reflected/rust/Cargo.toml +++ b/tests/runtimes/wasm_reflected/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust" -version = "0.5.0-rc.8" +version = "0.5.0-rc.9" edition = "2021" [lib] diff --git a/tools/consts.ts b/tools/consts.ts index d8d5da550..670acdb47 100644 --- a/tools/consts.ts +++ b/tools/consts.ts @@ -1,8 +1,8 @@ // Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0. // SPDX-License-Identifier: MPL-2.0 -export const METATYPE_VERSION = "0.5.0-rc.8"; -export const PUBLISHED_VERSION = "0.5.0-rc.7"; +export const METATYPE_VERSION = "0.5.0-rc.9"; +export const PUBLISHED_VERSION = "0.5.0-rc.8"; export const GHJK_VERSION = "v0.2.1"; export const GHJK_ACTION_VERSION = "318209a9d215f70716a4ac89dbeb9653a2deb8bc"; export const RUST_VERSION = "1.80.1";