Skip to content

Commit

Permalink
change protocol version to 0.10.0 on the main branch (#1830)
Browse files Browse the repository at this point in the history
  • Loading branch information
afck authored Mar 26, 2024
1 parent e4f7765 commit 206563f
Show file tree
Hide file tree
Showing 26 changed files with 73 additions and 73 deletions.
46 changes: 23 additions & 23 deletions Cargo.lock

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

32 changes: 16 additions & 16 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -139,25 +139,25 @@ wit-bindgen-guest-rust = { version = "0.2.0", package = "linera-wit-bindgen-gues
wit-bindgen-host-wasmer-rust = { version = "0.2.0", package = "linera-wit-bindgen-host-wasmer-rust" }
wit-bindgen-host-wasmtime-rust = { version = "0.2.0", package = "linera-wit-bindgen-host-wasmtime-rust" }

linera-base = { version = "0.9.0", path = "./linera-base" }
linera-chain = { version = "0.9.0", path = "./linera-chain" }
linera-core = { version = "0.9.0", path = "./linera-core", default-features = false }
linera-execution = { version = "0.9.0", path = "./linera-execution", default-features = false }
linera-base = { version = "0.10.0", path = "./linera-base" }
linera-chain = { version = "0.10.0", path = "./linera-chain" }
linera-core = { version = "0.10.0", path = "./linera-core", default-features = false }
linera-execution = { version = "0.10.0", path = "./linera-execution", default-features = false }
linera-indexer = { path = "./linera-indexer/lib" }
linera-indexer-graphql-client = { path = "./linera-indexer/graphql-client" }
linera-indexer-plugins = { path = "./linera-indexer/plugins" }
linera-rpc = { version = "0.9.0", path = "./linera-rpc" }
linera-sdk = { version = "0.9.0", path = "./linera-sdk" }
linera-storage = { version = "0.9.0", path = "./linera-storage", default-features = false }
linera-storage-service = { version = "0.9.0", path = "./linera-storage-service", default-features = false }
linera-version = { version = "0.9.0", path = "./linera-version" }
linera-views = { version = "0.9.0", path = "./linera-views", default-features = false }
linera-views-derive = { version = "0.9.0", path = "./linera-views-derive" }
linera-witty = { version = "0.9.0", path = "./linera-witty" }
linera-witty-macros = { version = "0.9.0", path = "./linera-witty-macros" }
linera-sdk-derive = { version = "0.9.0", path = "./linera-sdk-derive" }
linera-service = { version = "0.9.0", path = "./linera-service" }
linera-service-graphql-client = { version = "0.9.0", path = "./linera-service-graphql-client" }
linera-rpc = { version = "0.10.0", path = "./linera-rpc" }
linera-sdk = { version = "0.10.0", path = "./linera-sdk" }
linera-storage = { version = "0.10.0", path = "./linera-storage", default-features = false }
linera-storage-service = { version = "0.10.0", path = "./linera-storage-service", default-features = false }
linera-version = { version = "0.10.0", path = "./linera-version" }
linera-views = { version = "0.10.0", path = "./linera-views", default-features = false }
linera-views-derive = { version = "0.10.0", path = "./linera-views-derive" }
linera-witty = { version = "0.10.0", path = "./linera-witty" }
linera-witty-macros = { version = "0.10.0", path = "./linera-witty-macros" }
linera-sdk-derive = { version = "0.10.0", path = "./linera-sdk-derive" }
linera-service = { version = "0.10.0", path = "./linera-service" }
linera-service-graphql-client = { version = "0.10.0", path = "./linera-service-graphql-client" }

counter = { path = "./examples/counter" }
meta-counter = { path = "./examples/meta-counter" }
Expand Down
22 changes: 11 additions & 11 deletions examples/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 linera-base/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-base"
version = "0.9.0"
version = "0.10.0"
description = "Base definitions, including cryptography, used by the Linera protocol."
authors = ["Linera <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion linera-chain/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-chain"
version = "0.9.0"
version = "0.10.0"
description = "Persistent data and the corresponding logics used by the Linera protocol for chains of blocks, certificates, and cross-chain messaging."
authors = ["Linera <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion linera-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-core"
version = "0.9.0"
version = "0.10.0"
description = "The core Linera protocol, including client and server logic, node synchronization, etc."
authors = ["Linera <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion linera-execution/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-execution"
version = "0.9.0"
version = "0.10.0"
description = "Persistent data and the corresponding logics used by the Linera protocol for runtime and execution of smart contracts / applications."
authors = ["Linera <[email protected]>"]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion linera-explorer/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-explorer"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
description = "Block explorer for the Linera network"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion linera-indexer/example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "linera-indexer-example"
version = "0.9.0"
version = "0.10.0"
description = "Indexer example."
authors = ["Linera <[email protected]>"]
readme = "README.md"
Expand Down
Loading

0 comments on commit 206563f

Please sign in to comment.