Skip to content

Commit bd5cc19

Browse files
committed
chore: bump to v0.5.1-rc.5
1 parent dd10a9c commit bd5cc19

File tree

22 files changed

+44
-44
lines changed

22 files changed

+44
-44
lines changed

Cargo.lock

Lines changed: 19 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ exclude = [
3030
]
3131

3232
[workspace.package]
33-
version = "0.5.1-rc.4"
33+
version = "0.5.1-rc.5"
3434
edition = "2021"
3535

3636
[workspace.dependencies]

examples/templates/deno/api/example.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Policy, t, typegraph } from "jsr:@typegraph/[email protected].4";
2-
import { PythonRuntime } from "jsr:@typegraph/[email protected].4/runtimes/python";
3-
import { DenoRuntime } from "jsr:@typegraph/[email protected].4/runtimes/deno";
1+
import { Policy, t, typegraph } from "jsr:@typegraph/[email protected].5";
2+
import { PythonRuntime } from "jsr:@typegraph/[email protected].5/runtimes/python";
3+
import { DenoRuntime } from "jsr:@typegraph/[email protected].5/runtimes/deno";
44

55
await typegraph("example", (g) => {
66
const pub = Policy.public();

examples/templates/deno/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
typegate:
3-
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.4
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.5
44
restart: always
55
ports:
66
- "7890:7890"

examples/templates/node/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
typegate:
3-
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.4
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.5
44
restart: always
55
ports:
66
- "7890:7890"

examples/templates/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"dev": "MCLI_LOADER_CMD='npm x tsx' meta dev"
77
},
88
"dependencies": {
9-
"@typegraph/sdk": "^0.5.1-rc.4"
9+
"@typegraph/sdk": "^0.5.1-rc.5"
1010
},
1111
"devDependencies": {
1212
"tsx": "^3.13.0",

examples/templates/python/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
typegate:
3-
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.4
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.5
44
restart: always
55
ports:
66
- "7890:7890"

examples/templates/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[tool.poetry]
22
name = "example"
3-
version = "0.5.1-rc.4"
3+
version = "0.5.1-rc.5"
44
description = ""
55
authors = []
66

77
[tool.poetry.dependencies]
88
python = ">=3.8,<4.0"
9-
typegraph = "0.5.1-rc.4"
9+
typegraph = "0.5.1-rc.5"
1010

1111
[build-system]
1212
requires = ["poetry-core"]

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
[tool.poetry]
88
name = "metatype"
9-
version = "0.5.1-rc.4"
9+
version = "0.5.1-rc.5"
1010
description = ""
1111
authors = []
1212

src/pyrt_wit_wire/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pyrt_wit_wire"
3-
version = "0.5.1-rc.4"
3+
version = "0.5.1-rc.5"
44
description = "Wasm component implementing the PythonRuntime host using wit_wire protocol."
55
license = "MPL-2.0"
66
readme = "README.md"

src/typegate/src/runtimes/wit_wire/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { ResolverArgs } from "../../types.ts";
77
//
88
// const logger = getLogger(import.meta);
99

10-
const METATYPE_VERSION = "0.5.1-rc.4";
10+
const METATYPE_VERSION = "0.5.1-rc.5";
1111

1212
export class WitWireHandle {
1313
static async init(params: {

src/typegraph/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typegraph_core"
3-
version = "0.5.1-rc.4"
3+
version = "0.5.1-rc.5"
44
edition = "2021"
55

66
[dependencies]

src/typegraph/core/src/global_store.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ impl Store {
105105

106106
thread_local! {
107107
pub static STORE: RefCell<Store> = RefCell::new(Store::new());
108-
pub static SDK_VERSION: String = "0.5.1-rc.4".to_owned();
108+
pub static SDK_VERSION: String = "0.5.1-rc.5".to_owned();
109109
}
110110

111111
fn with_store<T, F: FnOnce(&Store) -> T>(f: F) -> T {

src/typegraph/deno/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typegraph/sdk",
3-
"version": "0.5.1-rc.4",
3+
"version": "0.5.1-rc.5",
44
"publish": {
55
"exclude": ["!src/gen", "!LICENSE.md", "!README.md"]
66
},

src/typegraph/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "typegraph"
3-
version = "0.5.1-rc.4"
3+
version = "0.5.1-rc.5"
44
description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are."
55
authors = ["Metatype Contributors <[email protected]>"]
66
license = "MPL-2.0"

src/typegraph/python/typegraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from typegraph.policy import Policy # noqa
66
from typegraph import effects as fx # noqa
77

8-
version = "0.5.1-rc.4"
8+
version = "0.5.1-rc.5"

src/xtask/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xtask"
3-
version = "0.5.1-rc.4"
3+
version = "0.5.1-rc.5"
44
edition = "2021"
55

66
# this allows us to exclude the rust files

tests/metagen/__snapshots__/metagen_test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ impl Router {
454454
}
455455
456456
pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
457-
static MT_VERSION: &str = "0.5.1-rc.4";
457+
static MT_VERSION: &str = "0.5.1-rc.5";
458458
if args.metatype_version != MT_VERSION {
459459
return Err(InitError::VersionMismatch(MT_VERSION.into()));
460460
}
@@ -1253,7 +1253,7 @@ impl Router {
12531253
}
12541254
12551255
pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
1256-
static MT_VERSION: &str = "0.5.1-rc.4";
1256+
static MT_VERSION: &str = "0.5.1-rc.5";
12571257
if args.metatype_version != MT_VERSION {
12581258
return Err(InitError::VersionMismatch(MT_VERSION.into()));
12591259
}

tests/metagen/typegraphs/identities/rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "identities_fdk"
33
edition = "2021"
4-
version = "0.5.1-rc.4"
4+
version = "0.5.1-rc.5"
55

66
[dependencies]
77
metagen-client = { workspace = true, features = ["graphql"] }

tests/metagen/typegraphs/sample/rs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "sample_client"
33
edition = "2021"
4-
version = "0.5.1-rc.4"
4+
version = "0.5.1-rc.5"
55

66
[dependencies]
77
metagen-client = { workspace = true, features = ["graphql"] }

tests/metagen/typegraphs/sample/rs_upload/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "sample_client_upload"
33
edition = "2021"
4-
version = "0.5.1-rc.4"
4+
version = "0.5.1-rc.5"
55

66
[dependencies]
77
metagen-client = { workspace = true, features = ["graphql"] }

tools/consts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright Metatype OÜ, licensed under the Mozilla Public License Version 2.0.
22
// SPDX-License-Identifier: MPL-2.0
33

4-
export const CURRENT_VERSION = "0.5.1-rc.4";
4+
export const CURRENT_VERSION = "0.5.1-rc.5";
55
export const LATEST_RELEASE_VERSION = "0.5.0";
66
export const LATEST_PRE_RELEASE_VERSION = "0.5.1-rc.2";
77
export const GHJK_VERSION = "v0.2.2";

0 commit comments

Comments
 (0)