Skip to content

Commit

Permalink
Release 0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
zackbrown committed Jan 26, 2024
1 parent 87e41a2 commit 2591d5b
Show file tree
Hide file tree
Showing 16 changed files with 56 additions and 56 deletions.
8 changes: 4 additions & 4 deletions pax-cartridge/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-cartridge"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -10,6 +10,6 @@ description = "Static program definition container for Pax programs, intended to

[dependencies]
piet-common = "0.6.0"
pax-core = {path = "../pax-core", version = "0.11.0"}
pax-runtime-api = {path = "../pax-runtime-api", version = "0.11.0"}
pax-std-primitives = {path = "../pax-std/pax-std-primitives", version = "0.11.0"}
pax-core = {path = "../pax-core", version = "0.11.1"}
pax-runtime-api = {path = "../pax-runtime-api", version = "0.11.1"}
pax-std-primitives = {path = "../pax-std/pax-std-primitives", version = "0.11.1"}
10 changes: 5 additions & 5 deletions pax-chassis-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-chassis-common"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
description = "Shared resources for Pax Chassis"
Expand All @@ -14,10 +14,10 @@ include = ["src/**/*","pax-swift-common/**/*"]
[dependencies]
piet = "0.6.0"
piet-coregraphics = "0.6.0"
pax-core = { path = "../pax-core", version="0.11.0" }
pax-cartridge = {path="../pax-cartridge", version="0.11.0"}
pax-message = {path = "../pax-message", version="0.11.0"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.0"}
pax-core = { path = "../pax-core", version="0.11.1" }
pax-cartridge = {path="../pax-cartridge", version="0.11.1"}
pax-message = {path = "../pax-message", version="0.11.1"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.1"}
lazy_static = "1.4.0"
mut_static = "5.0.0"
#be cautious about core-graphics' version number --
Expand Down
4 changes: 2 additions & 2 deletions pax-chassis-ios/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pax-chassis-ios"
edition = "2021"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pax.dev/"
Expand All @@ -13,4 +13,4 @@ name = "paxchassisios"
crate-type = ["cdylib"]

[dependencies]
pax-chassis-common = {version = "0.11.0", path="../pax-chassis-common"}
pax-chassis-common = {version = "0.11.1", path="../pax-chassis-common"}
12 changes: 6 additions & 6 deletions pax-chassis-macos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pax-chassis-macos"
edition = "2021"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pax.dev/"
Expand All @@ -15,11 +15,11 @@ crate-type = ["cdylib"]
[dependencies]
piet = "0.6.0"
piet-coregraphics = "0.6.0"
pax-chassis-common = { path = "../pax-chassis-common", version="0.11.0" }
pax-core = { path = "../pax-core", version="0.11.0" }
pax-cartridge = {path="../pax-cartridge", version="0.11.0"}
pax-message = {path = "../pax-message", version="0.11.0"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.0"}
pax-chassis-common = { path = "../pax-chassis-common", version="0.11.1" }
pax-core = { path = "../pax-core", version="0.11.1" }
pax-cartridge = {path="../pax-cartridge", version="0.11.1"}
pax-message = {path = "../pax-message", version="0.11.1"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.1"}
lazy_static = "1.4.0"
mut_static = "5.0.0"
#be cautious about core-graphics' version number --
Expand Down
10 changes: 5 additions & 5 deletions pax-chassis-web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-chassis-web"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -17,10 +17,10 @@ default = ["console_error_panic_hook"]
[dependencies]
piet = "0.6.0"
piet-web = "0.6.0"
pax-core = { path = "../pax-core", version="0.11.0" }
pax-cartridge = {path="../pax-cartridge", version="0.11.0"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.0"}
pax-message = {path = "../pax-message", version="0.11.0"}
pax-core = { path = "../pax-core", version="0.11.1" }
pax-cartridge = {path="../pax-cartridge", version="0.11.1"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.1"}
pax-message = {path = "../pax-message", version="0.11.1"}

wasm-bindgen = {version = "0.2.80", features=["serde-serialize"]}
serde = "1.0.159"
Expand Down
6 changes: 3 additions & 3 deletions pax-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-cli"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -14,12 +14,12 @@ description = "Command line interface tool for developing, packaging, and managi

[dependencies]
clap = "2.33.3"
pax-compiler = {path = "../pax-compiler", version = "0.11.0"}
pax-compiler = {path = "../pax-compiler", version = "0.11.1"}
rustc_version = "0.4.0"
tokio = { version = "1", features = ["full"] }
colored = "2.0.0"
reqwest = "0.11.18"
signal-hook = "0.3"
nix = "0.20.2"
pax-language-server = {version = "0.11.0"}
pax-language-server = {version = "0.11.1"}
color-eyre = "0.6.2"
8 changes: 4 additions & 4 deletions pax-compiler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-compiler"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down Expand Up @@ -31,9 +31,9 @@ tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11.18", features = ["blocking"] }
tar = "0.4"
fs_extra = "1.3.0"
pax-message = {version = "0.11.0", path="../pax-message"}
pax-runtime-api = {version= "0.11.0", path="../pax-runtime-api"}
pax-manifest = {version= "0.11.0", path="../pax-manifest"}
pax-message = {version = "0.11.1", path="../pax-message"}
pax-runtime-api = {version= "0.11.1", path="../pax-runtime-api"}
pax-manifest = {version= "0.11.1", path="../pax-manifest"}
pest = "2.6.0"
pest_derive = "2.6.0"
itertools = "0.10.5"
Expand Down
6 changes: 3 additions & 3 deletions pax-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-core"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -14,6 +14,6 @@ description = "Core shared runtime and rendering engine for Pax"
piet = "0.6.0"
piet-common = "0.6.0"
kurbo = "0.9.0"
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.0"}
pax-message = {path = "../pax-message", version="0.11.0"}
pax-runtime-api = {path = "../pax-runtime-api", version="0.11.1"}
pax-message = {path = "../pax-message", version="0.11.1"}
wasm-bindgen = {version = "0.2.30", features=["serde-serialize"]}
10 changes: 5 additions & 5 deletions pax-lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-lang"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -11,10 +11,10 @@ description = "Root import entry-point for using Pax in a Rust program"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pax-macro = {path="../pax-macro", version="0.11.0"}
pax-message = {path="../pax-message", version="0.11.0"}
pax-runtime-api = {path="../pax-runtime-api", version="0.11.0"}
pax-compiler = {path="../pax-compiler", optional=true, version="0.11.0"}
pax-macro = {path="../pax-macro", version="0.11.1"}
pax-message = {path="../pax-message", version="0.11.1"}
pax-runtime-api = {path="../pax-runtime-api", version="0.11.1"}
pax-compiler = {path="../pax-compiler", optional=true, version="0.11.1"}

[features]
parser = ["dep:pax-compiler"]
Expand Down
4 changes: 2 additions & 2 deletions pax-language-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-language-server"
version = "0.11.0"
version = "0.11.1"
authors = ["Warfa Jibril <[email protected]>"]
license = "MIT OR Apache-2.0"
homepage = "https://pax.dev/"
Expand All @@ -18,7 +18,7 @@ tokio = { version = "1.32.0", features = ["full"] }
tower-lsp = "0.20.0"
proc-macro2 = { version = "1.0", features = ["span-locations"] }
quote = "1.0.33"
pax-compiler = {version = "0.11.0", path="../pax-compiler"}
pax-compiler = {version = "0.11.1", path="../pax-compiler"}
pest = "2.7.4"
pest_derive = "2.7.4"
phf = { version = "0.11.2", features=["macros"] }
Expand Down
2 changes: 1 addition & 1 deletion pax-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-macro"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pax-manifest/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-manifest"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>", "Warfa Jibril <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pax-message/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-message"
version = "0.11.0"
version = "0.11.1"
edition = "2021"
authors = ["Zack Brown <[email protected]>"]
license = "MIT OR Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions pax-runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-runtime-api"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -17,4 +17,4 @@ kurbo = "0.9.0"
lazy_static = "1.4.0"
mut_static = "5.0.0"
uuid = {version = "0.8", features = ["v4", "wasm-bindgen"]}
pax-message = {version="0.11.0", path="../pax-message"}
pax-message = {version="0.11.1", path="../pax-message"}
12 changes: 6 additions & 6 deletions pax-std/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

[package]
name = "pax-std"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -16,13 +16,13 @@ primitives_crate = "./pax-std-primitives"
[dependencies]
piet = "0.6.0"
kurbo = "0.9.0"
pax-lang = {path = "../pax-lang", version="0.11.0"}
pax-message = {path = "../pax-message", version="0.11.0"}
pax-lang = {path = "../pax-lang", version="0.11.1"}
pax-message = {path = "../pax-message", version="0.11.1"}
lazy_static = "1.4.0"
pax-compiler = {path="../pax-compiler", optional = true, version="0.11.0"}
pax-compiler = {path="../pax-compiler", optional = true, version="0.11.1"}
serde_json = {version="1.0.95", optional = true}
pax-runtime-api = {version="0.11.0", path="../pax-runtime-api"}
pax-manifest = {path = "../pax-manifest", version="0.11.0"}
pax-runtime-api = {version="0.11.1", path="../pax-runtime-api"}
pax-manifest = {path = "../pax-manifest", version="0.11.1"}

[features]
parser = ["pax-lang/parser", "dep:pax-compiler", "dep:serde_json"]
12 changes: 6 additions & 6 deletions pax-std/pax-std-primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pax-std-primitives"
version = "0.11.0"
version = "0.11.1"
authors = ["Zack Brown <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
Expand All @@ -12,11 +12,11 @@ description = "Primitives crate for Pax's standard library"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
pax-lang = {path = "../../pax-lang", version="0.11.0"}
pax-core = {path = "../../pax-core", version="0.11.0"}
pax-std = {path = "../", version="0.11.0"}
pax-runtime-api = {path = "../../pax-runtime-api", version="0.11.0"}
pax-message = {path = "../../pax-message", version="0.11.0" }
pax-lang = {path = "../../pax-lang", version="0.11.1"}
pax-core = {path = "../../pax-core", version="0.11.1"}
pax-std = {path = "../", version="0.11.1"}
pax-runtime-api = {path = "../../pax-runtime-api", version="0.11.1"}
pax-message = {path = "../../pax-message", version="0.11.1" }
piet = "0.6.0"
piet-common = "0.6.0"
kurbo = "0.9.0"
Expand Down

0 comments on commit 2591d5b

Please sign in to comment.