Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump to version 0.4.4 #779

Merged
merged 1 commit into from
Jul 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ exclude = [
"libs/pyrt_wit_wire",
]
[workspace.package]
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

[workspace.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions dev/consts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export const WASMTIME_VERSION = "21.0.0";
export const WASMTIME_PY_VERSION = "21.0.0";
export const TYPEGRAPH_VERSION = "0.0.3";
export const PRISMA_VERSION = "5.6.0";
export const METATYPE_VERSION = "0.4.4-0";
export const PUBLISHED_VERSION = "0.4.3";
export const METATYPE_VERSION = "0.4.4";
export const PUBLISHED_VERSION = "0.4.4";
export const SDK_PACKAGE_NAME_TS = "@typegraph/sdk";
export const TAGLINE =
`Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are.`;
Expand Down
2 changes: 1 addition & 1 deletion dev/tasks-lock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const tasks: Record<string, DenoTaskDefArgs> = {
// we don't use the `generate-lockfile` command because
// "If the lockfile already exists, it will be rebuilt with the
// latest available version of every package."
await $`cargo verify-project`.stdout("piped");
await $`cargo tree`.stdout("piped");
}
},
},
Expand Down
6 changes: 3 additions & 3 deletions examples/templates/deno/api/example.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Policy, t, typegraph } from "npm:@typegraph/sdk@0.4.3/index";
import { PythonRuntime } from "npm:@typegraph/sdk@0.4.3/runtimes/python";
import { DenoRuntime } from "npm:@typegraph/sdk@0.4.3/runtimes/deno";
import { Policy, t, typegraph } from "npm:@typegraph/sdk@0.4.4/index";
import { PythonRuntime } from "npm:@typegraph/sdk@0.4.4/runtimes/python";
import { DenoRuntime } from "npm:@typegraph/sdk@0.4.4/runtimes/deno";

await typegraph("example", (g) => {
const pub = Policy.public();
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/deno/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.4.3
image: ghcr.io/metatypedev/typegate:v0.4.4
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/node/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.4.3
image: ghcr.io/metatypedev/typegate:v0.4.4
restart: always
ports:
- "7890:7890"
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "MCLI_LOADER_CMD='npm x tsx' meta dev"
},
"dependencies": {
"@typegraph/sdk": "^0.4.3"
"@typegraph/sdk": "^0.4.4"
},
"devDependencies": {
"tsx": "^3.13.0",
Expand Down
2 changes: 1 addition & 1 deletion examples/templates/python/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.4.3
image: ghcr.io/metatypedev/typegate:v0.4.4
restart: always
ports:
- "7890:7890"
Expand Down
4 changes: 2 additions & 2 deletions examples/templates/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[tool.poetry]
name = "example"
version = "0.4.4-0"
version = "0.4.4"
description = ""
authors = []

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
typegraph = "0.4.3"
typegraph = "0.4.4"

[build-system]
requires = ["poetry-core"]
Expand Down
2 changes: 1 addition & 1 deletion libs/common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "common"
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion libs/metagen/tests/mat_rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "mat_rust"
edition = "2021"
version = "0.4.4-0"
version = "0.4.4"

[workspace]
members = ["gen"]
Expand Down
2 changes: 1 addition & 1 deletion libs/pyrt_wit_wire/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyrt_wit_wire"
version = "0.4.4-0"
version = "0.4.4"
description = "Wasm component implementing the PythonRuntime host using wit_wire protocol."
license = "Elastic-2.0"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion libs/xtask/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtask"
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion meta-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "meta-cli"
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

description = "Declarative API development platform. Build backend components with WASM, Typescript and Python, no matter where and how your (legacy) systems are."
Expand Down
2 changes: 1 addition & 1 deletion meta-lsp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "VSCode extension for Metatype support",
"icon": "logo.png",
"author": "Metatype Team",
"version": "0.4.4-0",
"version": "0.4.4",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion meta-lsp/ts-language-server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "typegraph-ts-server",
"description": "TypeScript language server for TypeGraph",
"author": "Metatype Team",
"version": "0.4.4-0",
"version": "0.4.4",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion meta-lsp/vscode-metatype-support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-metatype-support",
"description": "VSCode extension for Metatype support",
"author": "Metatype Team",
"version": "0.4.4-0",
"version": "0.4.4",
"repository": {
"type": "git",
"url": "https://github.com/metatypedev/metatype"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "metatype"
version = "0.4.4-0"
version = "0.4.4"
description = ""
authors = []

Expand Down
2 changes: 1 addition & 1 deletion typegate/src/runtimes/wit_wire/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { getLogger } from "../../log.ts";

const logger = getLogger(import.meta);

const METATYPE_VERSION = "0.4.4-0";
const METATYPE_VERSION = "0.4.4";

export class WitWireMessenger {
static async init(
Expand Down
2 changes: 1 addition & 1 deletion typegate/tests/e2e/upgrade/upgrade_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { transformSyncConfig } from "@typegate/config.ts";
import { clearSyncData, setupSync } from "test-utils/hooks.ts";
import { assertEquals } from "std/assert/assert_equals.ts";

const PUBLISHED_VERSION = "0.4.3";
const PUBLISHED_VERSION = "0.4.4";

const previousVersion = PUBLISHED_VERSION;

Expand Down
4 changes: 2 additions & 2 deletions typegate/tests/metagen/__snapshots__/metagen_test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,7 @@ impl Router {
}

pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
static MT_VERSION: &str = "0.4.4-0";
static MT_VERSION: &str = "0.4.4";
if args.metatype_version != MT_VERSION {
return Err(InitError::VersionMismatch(MT_VERSION.into()));
}
Expand Down Expand Up @@ -1106,7 +1106,7 @@ impl Router {
}

pub fn init(&self, args: InitArgs) -> Result<InitResponse, InitError> {
static MT_VERSION: &str = "0.4.4-0";
static MT_VERSION: &str = "0.4.4";
if args.metatype_version != MT_VERSION {
return Err(InitError::VersionMismatch(MT_VERSION.into()));
}
Expand Down
2 changes: 1 addition & 1 deletion typegate/tests/runtimes/wasm_reflected/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust"
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion typegraph/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typegraph_core"
version = "0.4.4-0"
version = "0.4.4"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion typegraph/core/src/global_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const PREDEFINED_DENO_FUNCTIONS: &[&str] = &["identity", "true"];

thread_local! {
pub static STORE: RefCell<Store> = RefCell::new(Store::new());
pub static SDK_VERSION: String = "0.4.4-0".to_owned();
pub static SDK_VERSION: String = "0.4.4".to_owned();
}

fn with_store<T, F: FnOnce(&Store) -> T>(f: F) -> T {
Expand Down
2 changes: 1 addition & 1 deletion typegraph/python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "typegraph"
version = "0.4.4-0"
version = "0.4.4"
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 <support@metatype.dev>"]
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion typegraph/python/typegraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from typegraph.policy import Policy # noqa
from typegraph import effects as fx # noqa

version = "0.4.4-0"
version = "0.4.4"
Loading