Skip to content

Commit

Permalink
release: 459 update foucoco metadata and create new release (#460)
Browse files Browse the repository at this point in the history
* Update metadata-parachain-foucoco.scale

* Fix script for creating release

* Bump version numbers
  • Loading branch information
ebma authored Dec 1, 2023
1 parent 20a3dd1 commit 13d25ae
Show file tree
Hide file tree
Showing 41 changed files with 85 additions and 85 deletions.
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

0 comments on commit 13d25ae

Please sign in to comment.