Skip to content

Commit

Permalink
Release/v0.14 (#572)
Browse files Browse the repository at this point in the history
* nonce type is u32 mimicing parachains (#567)

* update to v0.14.1 (#570)

* update to v0.14.1

* update Cargo.lock
  • Loading branch information
asiniscalchi authored Apr 12, 2024
1 parent 568cf42 commit c76b69a
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
34 changes: 17 additions & 17 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 @@ -3,7 +3,7 @@ description = "The LAOS parachain node."
repository = "https://github.com/freeverseio/laos.git"
homepage = "https://www.laosfoundation.io"
authors = ["Freeverse"]
version = "0.14.0"
version = "0.14.1"

[workspace]
resolver = "2"
Expand Down
2 changes: 1 addition & 1 deletion e2e-tests/tests/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import EvolutionCollectionFactory from "../build/contracts/EvolutionCollectionFa

// Node config
export const RUNTIME_SPEC_NAME = "laos";
export const RUNTIME_SPEC_VERSION = 1400;
export const RUNTIME_SPEC_VERSION = 1401;
export const RUNTIME_IMPL_VERSION = 0;
export const RPC_PORT = 9999;

Expand Down
2 changes: 1 addition & 1 deletion runtime/klaos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("klaos"),
impl_name: create_runtime_str!("klaos"),
authoring_version: 1,
spec_version: 1400,
spec_version: 1401,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
2 changes: 1 addition & 1 deletion runtime/laos/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("laos"),
impl_name: create_runtime_str!("laos"),
authoring_version: 1,
spec_version: 1400,
spec_version: 1401,
impl_version: 0,
apis: apis::PUBLIC_RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit c76b69a

Please sign in to comment.