Skip to content

Commit

Permalink
chore: prepare release 0.1.8 (#308)
Browse files Browse the repository at this point in the history
  • Loading branch information
zifeo authored May 16, 2023
1 parent 0f05845 commit e43bd7d
Show file tree
Hide file tree
Showing 19 changed files with 30 additions and 29 deletions.
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 dev/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ dev:
NODE_VERSION: 19.8.1
PNPM_VERSION: 8.1.0
TYPEGRAPH_VERSION: 0.0.1
METATYPE_VERSION: 0.1.7
METATYPE_VERSION: 0.1.8
TAGLINE: >-
The low-code API platform for developers. Build modular APIs with
zero-trust and serverless deployment, no matter where and how your
Expand Down
5 changes: 3 additions & 2 deletions dev/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,9 @@ export async function run(
stderr: "piped",
env,
}).spawn();
p.stdout.pipeTo(Deno.stdout.writable, { preventClose: true });
p.stderr.pipeTo(Deno.stderr.writable, { preventClose: true });
// keep pipe asynchronous till the command exists
void p.stdout.pipeTo(Deno.stdout.writable, { preventClose: true });
void p.stderr.pipeTo(Deno.stderr.writable, { preventClose: true });
return await p.status;
}

Expand Down
2 changes: 1 addition & 1 deletion examples/templates/new/compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
typegate:
image: ghcr.io/metatypedev/typegate:v0.1.7
image: ghcr.io/metatypedev/typegate:v0.1.8
platform: linux/amd64
restart: always
ports:
Expand Down
4 changes: 2 additions & 2 deletions examples/templates/new/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[tool.poetry]
name = "example"
version = "0.1.7"
version = "0.1.8"
description = ""
authors = []
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
typegraph = "0.1.7"
typegraph = "0.1.8"

[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.1.7"
version = "0.1.8"
edition = "2021"

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

[lib]
Expand Down
2 changes: 1 addition & 1 deletion libs/typescript/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typescript"
version = "0.1.7"
version = "0.1.8"
edition = "2021"

[dependencies]
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.1.7"
version = "0.1.8"
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.1.7"
version = "0.1.8"
edition = "2021"

description = "The low-code API platform for developers. Build modular APIs with zero-trust and serverless deployment, no matter where and how your (legacy) systems are."
Expand Down
2 changes: 1 addition & 1 deletion typegate/native/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "native"
version = "0.1.7"
version = "0.1.8"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion typegate/tests/runtimes/wasmedge/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust"
version = "0.1.7"
version = "0.1.8"
edition = "2021"

[lib]
Expand Down
4 changes: 1 addition & 3 deletions typegate/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ export async function shell(
env: { RUST_LOG: "info,meta=trace" },
}).spawn();

const stderr = p.stderr.pipeTo(Deno.stderr.writable, { preventClose: true });

if (stdin != null) {
const w = p.stdin.getWriter();
w.write(new TextEncoder().encode(stdin));
Expand All @@ -80,7 +78,7 @@ export async function shell(
out += l;
}

await stderr;
await p.stderr.pipeTo(Deno.stderr.writable, { preventClose: true });

const { code, success } = await p.status;

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.1.7"
version = "0.1.8"
edition = "2021"

[lib]
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.1.7"
version = "0.1.8"
description = "The low-code API platform for developers. Build modular APIs with zero-trust and serverless deployment, no matter where and how your (legacy) systems are."
authors = ["Metatype Contributors <support@metatype.dev>"]
license = "ELv2"
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 @@ -4,4 +4,4 @@
from typegraph import types as t # noqa
from typegraph.graph.typegraph import TypeGraph # noqa

version = "0.1.7"
version = "0.1.8"
2 changes: 1 addition & 1 deletion typegraph/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "typegraph"
version = "0.1.7"
version = "0.1.8"
edition = "2021"

[dependencies]
Expand Down
3 changes: 2 additions & 1 deletion website/src/components/ChoicePicker/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ export function ChoicePicker<T>({
choices,
choice,
onChange,
className,
}: ChoicePickerP<T>) {
return (
<ul className="pl-0 m-0 list-none w-full">
<ul className={`pl-0 m-0 list-none w-full ${className ?? ""}`}>
{Object.entries(choices).map(([k, p]) => (
<li key={k} className="inline-block rounded-md overflow-clip mr-1">
<div>
Expand Down
1 change: 1 addition & 0 deletions website/src/components/MiniQL/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ function MiniQLBrowser({
choices={modes}
choice={mode}
onChange={setMode}
className="mb-2"
/>
) : null}

Expand Down

0 comments on commit e43bd7d

Please sign in to comment.