Skip to content

Commit

Permalink
update dev version to 0.1.3 (#2106)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardoalt authored Nov 18, 2024
1 parent 65a8d83 commit 5e91971
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 32 deletions.
48 changes: 24 additions & 24 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,37 +34,37 @@ members = [
exclude = [ "riscv-runtime" ]

[workspace.package]
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
homepage = "https://powdr.org"
repository = "https://github.com/powdr-labs/powdr"

[workspace.dependencies]
# workspace crates
powdr = { path = "./powdr", version = "0.1.2" }
powdr-airgen = { path = "./airgen", version = "0.1.2" }
powdr-ast = { path = "./ast", version = "0.1.2" }
powdr-asm-to-pil = { path = "./asm-to-pil", version = "0.1.2" }
powdr-isa-utils = { path = "./isa-utils", version = "0.1.2" }
powdr-analysis = { path = "./analysis", version = "0.1.2" }
powdr-backend = { path = "./backend", version = "0.1.2" }
powdr-backend-utils = { path = "./backend-utils", version = "0.1.2" }
powdr-executor = { path = "./executor", version = "0.1.2" }
powdr-importer = { path = "./importer", version = "0.1.2" }
powdr-jit-compiler = { path = "./jit-compiler", version = "0.1.2" }
powdr-linker = { path = "./linker", version = "0.1.2" }
powdr-number = { path = "./number", version = "0.1.2" }
powdr-parser = { path = "./parser", version = "0.1.2" }
powdr-parser-util = { path = "./parser-util", version = "0.1.2" }
powdr-pil-analyzer = { path = "./pil-analyzer", version = "0.1.2" }
powdr-pilopt = { path = "./pilopt", version = "0.1.2" }
powdr-pipeline = { path = "./pipeline", version = "0.1.2" }
powdr-plonky3 = { path = "./plonky3", version = "0.1.2" }
powdr-riscv = { path = "./riscv", version = "0.1.2" }
powdr-riscv-executor = { path = "./riscv-executor", version = "0.1.2" }
powdr-riscv-syscalls = { path = "./riscv-syscalls", version = "0.1.2" }
powdr-schemas = { path = "./schemas", version = "0.1.2" }
powdr = { path = "./powdr", version = "0.1.3" }
powdr-airgen = { path = "./airgen", version = "0.1.3" }
powdr-ast = { path = "./ast", version = "0.1.3" }
powdr-asm-to-pil = { path = "./asm-to-pil", version = "0.1.3" }
powdr-isa-utils = { path = "./isa-utils", version = "0.1.3" }
powdr-analysis = { path = "./analysis", version = "0.1.3" }
powdr-backend = { path = "./backend", version = "0.1.3" }
powdr-backend-utils = { path = "./backend-utils", version = "0.1.3" }
powdr-executor = { path = "./executor", version = "0.1.3" }
powdr-importer = { path = "./importer", version = "0.1.3" }
powdr-jit-compiler = { path = "./jit-compiler", version = "0.1.3" }
powdr-linker = { path = "./linker", version = "0.1.3" }
powdr-number = { path = "./number", version = "0.1.3" }
powdr-parser = { path = "./parser", version = "0.1.3" }
powdr-parser-util = { path = "./parser-util", version = "0.1.3" }
powdr-pil-analyzer = { path = "./pil-analyzer", version = "0.1.3" }
powdr-pilopt = { path = "./pilopt", version = "0.1.3" }
powdr-pipeline = { path = "./pipeline", version = "0.1.3" }
powdr-plonky3 = { path = "./plonky3", version = "0.1.3" }
powdr-riscv = { path = "./riscv", version = "0.1.3" }
powdr-riscv-executor = { path = "./riscv-executor", version = "0.1.3" }
powdr-riscv-syscalls = { path = "./riscv-syscalls", version = "0.1.3" }
powdr-schemas = { path = "./schemas", version = "0.1.3" }

[profile.pr-tests]
inherits = "dev"
Expand Down
2 changes: 1 addition & 1 deletion examples/fibonacci/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ default = []
simd = ["powdr/plonky3-simd"]

[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1", features = ["plonky3"] }
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = ["plonky3"] }
serde = { version = "1.0", default-features = false, features = [
"alloc",
"derive",
Expand Down
4 changes: 2 additions & 2 deletions examples/fibonacci/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1", features = [
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = [
"std",
] }

Expand Down
2 changes: 1 addition & 1 deletion examples/keccak/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ default = []
simd = ["powdr/plonky3-simd"]

[dependencies]
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1", features = ["plonky3"] }
powdr = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = ["plonky3"] }
hex = "0.4"
serde = { version = "1.0", default-features = false, features = [
"alloc",
Expand Down
4 changes: 2 additions & 2 deletions examples/keccak/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.1", features = [
powdr-riscv-syscalls = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2" }
powdr-riscv-runtime = { git = "https://github.com/powdr-labs/powdr", tag = "v0.1.2", features = [
"std",
] }
tiny-keccak = { version = "2.0.2", features = ["keccak"] }
Expand Down
4 changes: 2 additions & 2 deletions riscv-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "powdr-riscv-runtime"
description = "powdr runtime provider for RISCV programs"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license = "MIT"
homepage = "https://powdr.org"
Expand All @@ -10,7 +10,7 @@ repository = "https://github.com/powdr-labs/powdr"
[dependencies]
serde = { version = "1.0", default-features = false, features = ["alloc", "derive", "rc"] }
serde_cbor = { version = "0.11.2", default-features = false, features = ["alloc"] }
powdr-riscv-syscalls = { path = "../riscv-syscalls", version = "0.1.0-alpha.2" }
powdr-riscv-syscalls = { path = "../riscv-syscalls", version = "0.1.3" }
getrandom = { version = "0.2", features = ["custom"], optional = true }

[features]
Expand Down

0 comments on commit 5e91971

Please sign in to comment.