Skip to content
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
10 changes: 5 additions & 5 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 @@ -9,7 +9,7 @@ members = [
]

[workspace.package]
version = "0.1.5"
version = "0.1.6"
edition = "2021"
license = "MPL-2.0"
repository = "https://github.com/paritytech/pvm-host-runtime"
Expand Down
2 changes: 1 addition & 1 deletion js/packages/pvm-browser-runtime/SOURCE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PolkaVM App v2 browser runtime
Source repository: https://github.com/paritytech/pvm-host-runtime
Release tag: v0.1.5
Release tag: v0.1.6
Rust crate: rust/crates/pvm-runtime
GPU wire crate: rust/crates/pvm-gpu-wire
PolkaVM native revision: e06cce9da5c6d3f72458168876ea304e27992094
Expand Down
2 changes: 1 addition & 1 deletion js/packages/pvm-browser-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parity/pvm-browser-runtime",
"version": "0.1.5",
"version": "0.1.6",
"description": "Host-neutral PolkaVM App v2 browser runtime artifacts",
"license": "MPL-2.0",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "pvm-host-runtime-workspace",
"private": true,
"version": "0.1.5",
"version": "0.1.6",
"description": "Host-neutral PolkaVM application runtime workspace",
"license": "MPL-2.0",
"type": "module",
Expand Down
4 changes: 2 additions & 2 deletions rust/crates/pvm-assets-export/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "pvm-assets-export"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "Exports host-neutral PolkaVM browser runtime assets"
license = "MPL-2.0"
repository = "https://github.com/paritytech/pvm-host-runtime"
publish = false

[dependencies]
pvm-runtime-assets = { version = "0.1.5", path = "../pvm-runtime-assets" }
pvm-runtime-assets = { version = "0.1.6", path = "../pvm-runtime-assets" }
2 changes: 1 addition & 1 deletion rust/crates/pvm-gpu-wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pvm-gpu-wire"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "Bounded host-neutral WebGPU Raster wire protocol for PolkaVM applications"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/crates/pvm-motion-wire/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pvm-motion-wire"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "Versioned host-neutral motion sample wire protocol for PolkaVM applications"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion rust/crates/pvm-runtime-assets/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pvm-runtime-assets"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "Source-built browser assets for the host-neutral PolkaVM runtime"
license = "MPL-2.0"
Expand Down
6 changes: 3 additions & 3 deletions rust/crates/pvm-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pvm-runtime"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
description = "Host-neutral App manifest v2 PolkaVM runtime and browser execution wrapper"
license = "MPL-2.0"
Expand All @@ -16,8 +16,8 @@ ffi = ["dep:thiserror", "dep:uniffi"]
[dependencies]
anyhow = "1"
log = "0.4"
pvm-gpu-wire = { version = "0.1.5", path = "../pvm-gpu-wire" }
pvm-motion-wire = { version = "0.1.5", path = "../pvm-motion-wire" }
pvm-gpu-wire = { version = "0.1.6", path = "../pvm-gpu-wire" }
pvm-motion-wire = { version = "0.1.6", path = "../pvm-motion-wire" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wasm-encoder = "0.240"
Expand Down
Loading