Skip to content

Commit

Permalink
Merge branch 'master' into wasm-builder-riscv32emac
Browse files Browse the repository at this point in the history
  • Loading branch information
jarkkojs authored Dec 3, 2024
2 parents 334b78d + d1d92ab commit a23fa4e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: alloc::borrow::Cow::Borrowed("westmint"),
impl_name: alloc::borrow::Cow::Borrowed("westmint"),
authoring_version: 1,
spec_version: 1_016_008,
spec_version: 1_017_002,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 16,
Expand Down
7 changes: 7 additions & 0 deletions prdoc/pr_6583.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
title: Bump Westend AH
doc:
- audience: Runtime Dev
description: Bump Asset-Hub westend spec version
crates:
- name: asset-hub-westend-runtime
bump: minor
9 changes: 7 additions & 2 deletions substrate/frame/revive/fixtures/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,15 @@ fn create_out_dir() -> Result<PathBuf> {
.join("pallet-revive-fixtures");

// clean up some leftover symlink from previous versions of this script
if out_dir.exists() && !out_dir.is_dir() {
let mut out_exists = out_dir.exists();
if out_exists && !out_dir.is_dir() {
fs::remove_file(&out_dir)?;
out_exists = false;
}

if !out_exists {
fs::create_dir(&out_dir).context("Failed to create output directory")?;
}
fs::create_dir_all(&out_dir).context("Failed to create output directory")?;

// write the location of the out dir so it can be found later
let mut file = fs::File::create(temp_dir.join("fixture_location.rs"))
Expand Down

0 comments on commit a23fa4e

Please sign in to comment.