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

release: 459 update foucoco metadata and create new release #460

Merged
merged 3 commits into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion .maintain/create_minor_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
for file in $(find . -name "Cargo.toml")
do
# Use awk to increment the minor version number of the package
awk -F'.' '/\[package\]/,/version =/ { if($0 ~ /version =/ && $0 !~ /#/) {print $1"."$2+1".0"; next} }1' $file > temp && mv temp $file
awk -F'.' '/\[package\]/,/version =/ { if($0 ~ /version =/ && $0 !~ /#/) {print $1"."$2+1".0""\""; next} }1' $file > temp && mv temp $file
done
2 changes: 1 addition & 1 deletion .maintain/create_patch_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
for file in $(find . -name "Cargo.toml")
do
# Use awk to increment the version number of the package
awk -F'.' '/\[package\]/,/version =/ { if($0 ~ /version =/ && $0 !~ /#/) {print $1"."$2"."$3+1; next} }1' $file > temp && mv temp $file
awk -F'.' '/\[package\]/,/version =/ { if($0 ~ /version =/ && $0 !~ /#/) {print $1"."$2"."$3+1"\""; next} }1' $file > temp && mv temp $file
done
72 changes: 36 additions & 36 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 @@ -155,4 +155,4 @@ xcm = { git = "https://github.com/paritytech//polkadot", branch = "release-v0.9.

[patch.crates-io]
sp-core = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
sp-runtime = { git = "https://github.com/paritytech//substrate", branch = "polkadot-v0.9.40" }
4 changes: 2 additions & 2 deletions clients/runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "runner"
version = "1.0.0"
version = "1.0.1"
edition = "2021"


Expand Down Expand Up @@ -29,4 +29,4 @@ sha2 = "0.8.2"
[dev-dependencies]
sysinfo = "0.25.1"
tempdir = "0.3.7"
mockall = "0.8.1"
mockall = "0.8.1"
2 changes: 1 addition & 1 deletion clients/runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Pendulum"]
edition = "2018"
name = "runtime"
version = "1.0.0"
version = "1.0.1"

[features]
default = []
Expand Down
2 changes: 1 addition & 1 deletion clients/runtime/client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "subxt-client"
version = "1.0.0"
version = "1.0.1"
authors = []
edition = "2018"

Expand Down
Binary file modified clients/runtime/metadata-parachain-foucoco.scale
Binary file not shown.
4 changes: 2 additions & 2 deletions clients/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Pendulum"]
edition = "2018"
name = "service"
version = "1.0.0"
version = "1.0.1"

[dependencies]
async-trait = "0.1.40"
Expand All @@ -27,4 +27,4 @@ nonzero_ext = "0.3.0"

# Workspace dependencies
runtime = { path = "../runtime" }
wallet = { path = "../wallet" }
wallet = { path = "../wallet" }
Loading
Loading