Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.7.0 #498

Merged
merged 41 commits into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
1ceff2e
Update to 1.7.0
drewstone Feb 26, 2024
5d8faf8
Bump curve25519-dalek
drewstone Feb 26, 2024
9943a78
frontier update changes
salman01zp Mar 4, 2024
6da155f
update local path
salman01zp Mar 4, 2024
462e266
fix issue with evm crates
shekohex Mar 4, 2024
52c0c04
compile roles pallet
salman01zp Mar 4, 2024
72c2ad4
update mock configurations
salman01zp Mar 4, 2024
d603d83
remove light client from tangle
salman01zp Mar 4, 2024
8e3f59d
update schnorrkel to 0.11.4
salman01zp Mar 4, 2024
20b7bc0
update testnet configuration
salman01zp Mar 4, 2024
e76d6b2
compiles testnet-runtime
salman01zp Mar 5, 2024
291a5cc
compile mainnet runtime
salman01zp Mar 5, 2024
230418a
compiles and build tangle
salman01zp Mar 5, 2024
58cdc09
Tangle subxt (#505)
salman01zp Mar 1, 2024
e6b32de
use curve25519-dalek 4.1.1 to match lit-frost requirement
salman01zp Mar 5, 2024
fe2a77e
Merge remote-tracking branch 'origin/main' into polkadot-v1.7.0
salman01zp Mar 5, 2024
e9f4d45
cargo fmt
salman01zp Mar 5, 2024
927103c
enable stdsimd feature
salman01zp Mar 5, 2024
10a24af
enable simd feature
salman01zp Mar 5, 2024
1ee5154
Merge branch 'main' into polkadot-v1.7.0
drewstone Mar 5, 2024
a18389e
removd simd feature
salman01zp Mar 5, 2024
3a0d990
regenerate cargo.lock
salman01zp Mar 5, 2024
6827fc2
remove cache from CI
salman01zp Mar 5, 2024
c89f9a4
revert rust-toolchain
salman01zp Mar 5, 2024
c451e7f
cargo update
salman01zp Mar 5, 2024
20dc912
Merge remote-tracking branch 'origin/main' into polkadot-v1.7.0
salman01zp Mar 5, 2024
b714171
cargo fmt
salman01zp Mar 5, 2024
2e21c0d
Merge branch 'main' into polkadot-v1.7.0
salman01zp Mar 5, 2024
c7ebcd3
Update tangle-subxt
drewstone Mar 5, 2024
e204c49
Fmt, update
drewstone Mar 5, 2024
a1290f9
Clippy fix
drewstone Mar 5, 2024
6f516a1
Fmt
drewstone Mar 5, 2024
a248d98
use stable rust
salman01zp Mar 6, 2024
018076e
cargo fmt
salman01zp Mar 6, 2024
00b25e1
update CI job
salman01zp Mar 6, 2024
8ed5ede
clippy fix + fix democracy precompile tests
salman01zp Mar 6, 2024
fc6d853
fix tx-pause tests
salman01zp Mar 6, 2024
698c533
update sha2256sum statement link
salman01zp Mar 6, 2024
8d644f4
Merge branch 'main' into polkadot-v1.7.0
drewstone Mar 6, 2024
36453e3
fmt
drewstone Mar 6, 2024
de93b84
Merge remote-tracking branch 'origin/main' into polkadot-v1.7.0
salman01zp Mar 6, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install latest nightly
- name: Install latest stable
uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-07-16
toolchain: stable
override: true
components: rustfmt

Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions-rs/toolchain@master
with:
profile: minimal
toolchain: nightly
toolchain: stable
target: wasm32-unknown-unknown

- name: Install cargo-nextest
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions-rs/toolchain@master
with:
profile: minimal
toolchain: nightly
toolchain: stable
target: wasm32-unknown-unknown

- name: Rust Cache
Expand Down
Loading
Loading