Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
Release/0.1.27-erstall (#377)
Browse files Browse the repository at this point in the history
*  Release 0.1.27-erdstall
  • Loading branch information
DidacSF authored Nov 24, 2023
1 parent fce431d commit 45274b8
Show file tree
Hide file tree
Showing 23 changed files with 4,398 additions and 24 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: Release
on:
push:
branches:
- release/[0-9]+.[0-9]+.[0-9]+
- release/[0-9]+.[0-9]+.[0-9]+-?[a-z]*
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-?[a-z]*

env:
CARGO_TERM_COLOR: always
Expand All @@ -15,6 +15,7 @@ jobs:
if: startsWith(github.ref, 'refs/heads/release')
name: Check for release
runs-on: ubuntu-latest
continue-on-error: true
strategy:
matrix:
runtime: [bajun, ajuna]
Expand Down
52 changes: 36 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = [ "Ajuna Network <https://github.com/ajuna-network>" ]
edition = "2021"
homepage = "https://ajuna.io"
repository = "https://github.com/ajuna-network/Ajuna"
version = "0.1.26"
version = "0.1.27"

[workspace]
members = [
Expand Down Expand Up @@ -168,6 +168,7 @@ pallet-ajuna-awesome-avatars = { path = "pallets/ajuna-awesome-avat
pallet-ajuna-awesome-avatars-benchmarking = { path = "pallets/ajuna-awesome-avatars/benchmarking", default-features = false }
pallet-ajuna-nft-transfer = { path = "pallets/ajuna-nft-transfer", default-features = false }
pallet-ajuna-nft-staking = { path = "pallets/ajuna-nft-staking", default-features = false }
pallet-ajuna-wildcard = { path = "pallets/ajuna-wildcard", default-features = false}

[profile.production]
codegen-units = 1
Expand Down
1 change: 1 addition & 0 deletions node/service/src/chain_spec/bajun.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ fn testnet_genesis(
safe_xcm_version: Some(SAFE_XCM_VERSION),
..Default::default()
},
assets: Default::default(),
awesome_avatars: Default::default(),
}
}
51 changes: 51 additions & 0 deletions pallets/ajuna-wildcard/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
[package]
description = "Ajuna Network pallet used to interact with Erdstall chain bridge"
name = "pallet-ajuna-wildcard"

authors.workspace = true
edition.workspace = true
homepage.workspace = true
repository.workspace = true
version.workspace = true

[package.metadata.docs.rs]
targets = [ "x86_64-unknown-linux-gnu"]

[dependencies]
# Substrate (wasm)
frame-benchmarking = { workspace = true }
frame-support = { workspace = true }
frame-system = { workspace = true }
parity-scale-codec = { workspace = true, features = [ "derive", "max-encoded-len" ] }
scale-info = { workspace = true, features = [ "derive" ] }
sp-core = { workspace = true }
sp-runtime = { workspace = true }

[dev-dependencies]
pallet-assets = { workspace = true }
pallet-balances = { workspace = true }
pallet-nfts = { workspace = true }
pallet-timestamp = { workspace = true }
sp-io = { workspace = true }

[features]
default = [ "std" ]
runtime-benchmarks = [
"frame-benchmarking/runtime-benchmarks",
"pallet-nfts/runtime-benchmarks",
"pallet-assets/runtime-benchmarks"
]
std = [
"scale-info/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"sp-core/std",
"sp-runtime/std",
"pallet-assets/std",
"pallet-balances/std",
"pallet-nfts/std",
"pallet-timestamp/std",
"parity-scale-codec/std",
]
try-runtime = [ "frame-support/try-runtime" ]
Loading

0 comments on commit 45274b8

Please sign in to comment.