Skip to content

Commit 59361e5

Browse files
authored
Merge branch 'master' into polkadot-stable2503
2 parents d010dce + 9869331 commit 59361e5

File tree

44 files changed

+118
-75
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+118
-75
lines changed

.codespell/codespellrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[codespell]
2+
skip = .git,Cargo.lock
3+
count =
4+
quiet-level = 3
5+
ignore-words = ./.codespell/ignore.txt

.codespell/ignore.txt

Whitespace-only changes.

.codespell/requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
codespell==2.4.1

.github/workflows/codespell.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# A Github action that using codespell to check spelling.
2+
# see .codespell/* for configs
3+
# https://github.com/codespell-project/codespell
4+
5+
name: codespell
6+
7+
on:
8+
# Triggers the workflow on push or pull request against main
9+
push:
10+
branches: [master]
11+
pull_request:
12+
branches: [master]
13+
# Allows you to run this workflow manually from the Actions tab
14+
workflow_dispatch:
15+
16+
jobs:
17+
codespell:
18+
runs-on: ubuntu-latest
19+
20+
steps:
21+
- name: Checkout the repository
22+
uses: actions/checkout@v4
23+
24+
- name: Setup python
25+
uses: actions/setup-python@v5
26+
with:
27+
python-version: '3.x'
28+
29+
- name: Install codespell requirements
30+
run: pip install -r ./.codespell/requirements.txt
31+
32+
- name: Spell check
33+
run: codespell --config=./.codespell/codespellrc

asset-registry/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-asset-registry"
33
description = "Registry for (foreign) assets"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/asset-registry"
55
license = "Apache-2.0"
6-
version = "1.2.1"
6+
version = "1.3.0"
77
authors = ["Interlay Ltd, etc"]
88
edition = "2021"
99

@@ -27,7 +27,7 @@ xcm-builder = { workspace = true }
2727
xcm-executor = { workspace = true }
2828

2929
# orml
30-
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
30+
orml-traits = { path = "../traits", version = "1.3.0", default-features = false }
3131

3232
# for runtime-benchmarks
3333
polkadot-runtime-common = { workspace = true, optional = true }

auction/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-auction"
33
description = "Auction module that implements `Auction` trait."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "1.2.1"
6+
version = "1.3.0"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

@@ -17,7 +17,7 @@ frame-system = { workspace = true }
1717
sp-runtime = { workspace = true }
1818
sp-std = { workspace = true }
1919

20-
orml-traits = { path = "../traits", version = "1.2.1", default-features = false }
20+
orml-traits = { path = "../traits", version = "1.3.0", default-features = false }
2121

2222
[dev-dependencies]
2323
sp-core = { workspace = true, features = ["std"] }

authority/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-authority"
33
description = "Utility pallet to perform ROOT calls in a PoA network"
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/auction"
55
license = "Apache-2.0"
6-
version = "1.2.1"
6+
version = "1.3.0"
77
authors = ["Acala Developers"]
88
edition = "2021"
99

authority/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
### Overview
44

5-
Authority module to provide features for governance including dispatch method on behalf other accounts and schdule dispatchables.
5+
Authority module to provide features for governance including dispatch method on behalf other accounts and schedule dispatchables.
66

77
- `dispatch_as` can dispatch a dispatchable on behalf of other origin.
8-
- `schedule_dispatch` can schdule a dispatchable to be dispatched at later block.
8+
- `schedule_dispatch` can schedule a dispatchable to be dispatched at later block.
99
- `fast_track_scheduled_dispatch` can fast track a scheduled dispatchable.
1010
- `delay_scheduled_dispatch` can delay a scheduled dispatchable.
1111
- `cancel_scheduled_dispatch` can cancel a scheduled dispatchable.

benchmarking/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "orml-benchmarking"
33
description = "Provide macro to benchmark Substrate runtime."
44
repository = "https://github.com/open-web3-stack/open-runtime-module-library/tree/master/benchmarking"
55
license = "Apache-2.0"
6-
version = "1.2.1"
6+
version = "1.3.0"
77
authors = ["Laminar Developers <[email protected]>"]
88
edition = "2021"
99

benchmarking/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1172,7 +1172,7 @@ macro_rules! impl_benchmark_test_suite {
11721172
$crate::BenchmarkError::Override(_) => {
11731173
// This is still considered a success condition.
11741174
$crate::log::error!(
1175-
"WARNING: benchmark error overrided - {}",
1175+
"WARNING: benchmark error overridden - {}",
11761176
$crate::str::from_utf8(benchmark_name)
11771177
.expect("benchmark name is always a valid string!"),
11781178
);
@@ -1300,7 +1300,7 @@ macro_rules! add_benchmark {
13001300
Err($crate::BenchmarkError::Override(mut result)) => {
13011301
// Insert override warning as the first storage key.
13021302
$crate::log::error!(
1303-
"WARNING: benchmark error overrided - {}",
1303+
"WARNING: benchmark error overridden - {}",
13041304
$crate::str::from_utf8(benchmark)
13051305
.expect("benchmark name is always a valid string!")
13061306
);

0 commit comments

Comments
 (0)