Skip to content

Commit

Permalink
chore: bump to v0.4.10 (#835)
Browse files Browse the repository at this point in the history
- Bump v0.4.10
  • Loading branch information
Yohe-Am authored Sep 4, 2024
1 parent 2e692b9 commit 67c1d0f
Show file tree
Hide file tree
Showing 30 changed files with 151 additions and 124 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ jobs:
# avoid publishing pre-release versions as they don't
# support it
[[ "$(ghjk x version-print)" == *-* ]] \
[[ "$(ghjk x version-print)" != *-* ]] \
&& ([ ${{ github.event_name == 'workflow_dispatch' && inputs.ovewriteArtifacts }} == 'true' ] \
&& pnpm run vscode:publish -p ${{ secrets.AZURE_DEVOPS_TOKEN }} --skip-duplicate \
|| pnpm run vscode:publish -p ${{ secrets.AZURE_DEVOPS_TOKEN }})
Expand Down
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 @@ -20,7 +20,7 @@ exclude = [
]

[workspace.package]
version = "0.4.10-rc1"
version = "0.4.10"
edition = "2021"

[workspace.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions LICENSE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Portions of this repository are licensed as follows:
the original license provided by the owner of the applicable component (see
the license header of the relevant files)
- all content under `typegraph/` and `meta-cli/` is licensed under
[Mozilla Public License 2.0 (MPL-2.0)](./dev/LICENSE-MPL-2.0.md)
[Mozilla Public License 2.0 (MPL-2.0)](./tools/LICENSE-MPL-2.0.md)
- all content outside the above-mentioned files or restrictions is available
under the [Elastic License 2.0 (Elastic-2.0)](./dev/LICENSE-Elastic-2.0.md)
under the [Elastic License 2.0 (Elastic-2.0)](./tools/LICENSE-Elastic-2.0.md)
- alternatively, the Metatype Commercial Licensing can take precedence in case
your usage requires ad-hoc clarifications (reach out!)

Expand Down
84 changes: 4 additions & 80 deletions deno.lock

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

100 changes: 100 additions & 0 deletions examples/deno.lock

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

8 changes: 4 additions & 4 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/[email protected].8/index";
import { PythonRuntime } from "npm:@typegraph/[email protected].8/runtimes/python";
import { DenoRuntime } from "npm:@typegraph/[email protected].8/runtimes/deno";
import { Policy, t, typegraph } from "jsr:@typegraph/[email protected].10-rc1/index.ts";
import { PythonRuntime } from "jsr:@typegraph/[email protected].10-rc1/runtimes/python.ts";
import { DenoRuntime } from "jsr:@typegraph/[email protected].10-rc1/runtimes/deno.ts";

await typegraph("example", (g) => {
const pub = Policy.public();
Expand All @@ -12,7 +12,7 @@ await typegraph("example", (g) => {
.fromLambda(
t.struct({ first: t.float(), second: t.float() }),
t.float(),
{ code: "lambda x: x['first'] + x['second']" }
{ code: "lambda x: x['first'] + x['second']" },
)
.withPolicy(pub),
multiply: deno
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.10-rc1
image: ghcr.io/metatypedev/typegate:v0.4.10
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.10-rc1
image: ghcr.io/metatypedev/typegate:v0.4.10
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.10-rc1"
"@typegraph/sdk": "^0.4.10"
},
"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.10-rc1
image: ghcr.io/metatypedev/typegate:v0.4.10
restart: always
ports:
- "7890:7890"
Expand Down
Loading

0 comments on commit 67c1d0f

Please sign in to comment.