Skip to content

Commit 38df9d0

Browse files
authored
chore: bump to v0.5.1-rc.3 (#1015)
<!-- Pull requests are squashed and merged using: - their title as the commit message - their description as the commit body Having a good title and description is important for the users to get readable changelog. --> <!-- 1. Explain WHAT the change is about --> - Bump to v0.5.1-rc.3 <!-- 2. Explain WHY the change cannot be made simpler --> <!-- 3. Explain HOW users should update their code --> #### Migration notes --- - [ ] The change comes with new or modified tests - [ ] Hard-to-understand functions have explanatory comments - [ ] End-user documentation is updated to reflect the change <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Updated version numbers across multiple packages and configuration files from 0.5.1-rc.2 to 0.5.1-rc.3. - Updated Docker Compose service images and SDK/runtime dependencies to use the new version. - Refreshed version constants and metadata to reflect the latest release candidate. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 58c4f25 commit 38df9d0

File tree

24 files changed

+122
-46
lines changed

24 files changed

+122
-46
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.2"
33+
version = "0.5.1-rc.3"
3434
edition = "2021"
3535

3636
[workspace.dependencies]

deno.lock

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

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].2";
2-
import { PythonRuntime } from "jsr:@typegraph/[email protected].2/runtimes/python";
3-
import { DenoRuntime } from "jsr:@typegraph/[email protected].2/runtimes/deno";
1+
import { Policy, t, typegraph } from "jsr:@typegraph/[email protected].3";
2+
import { PythonRuntime } from "jsr:@typegraph/[email protected].3/runtimes/python";
3+
import { DenoRuntime } from "jsr:@typegraph/[email protected].3/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.2
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.3
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.2
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.3
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.2"
9+
"@typegraph/sdk": "^0.5.1-rc.3"
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.2
3+
image: ghcr.io/metatypedev/typegate:v0.5.1-rc.3
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.2"
3+
version = "0.5.1-rc.3"
44
description = ""
55
authors = []
66

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

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

examples/typegraphs/metagen/rs/fdk.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ impl Router {
116116
}
117117

118118
pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
119-
static MT_VERSION: &str = "0.5.1-rc.2";
119+
static MT_VERSION: &str = "0.5.1-rc.3";
120120
if args.metatype_version != MT_VERSION {
121121
return Err(InitError::VersionMismatch(MT_VERSION.into()));
122122
}

0 commit comments

Comments
 (0)