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

Commit

Permalink
* Bugfix constants
Browse files Browse the repository at this point in the history
* Release 0.1.22
  • Loading branch information
DidacSF committed Aug 4, 2023
1 parent de91fe8 commit 7fd125c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 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 @@ -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.21"
version = "0.1.22"

[profile.release]
panic = "unwind"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ pub(crate) const PET_TYPE_PROBABILITIES: ProbabilitySlots<PetType, 7> = [
pub(crate) const EQUIPMENT_TYPE_PROBABILITIES: ProbabilitySlots<EquippableItemType, 7> = [
(EquippableItemType::ArmorBase, 250),
(EquippableItemType::ArmorComponent1, 150),
(EquippableItemType::ArmorComponent3, 150),
(EquippableItemType::ArmorComponent2, 150),
(EquippableItemType::ArmorComponent3, 150),
(EquippableItemType::WeaponVersion1, 100),
(EquippableItemType::WeaponVersion2, 100),
Expand Down
2 changes: 1 addition & 1 deletion runtime/ajuna/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("ajuna"),
impl_name: create_runtime_str!("ajuna"),
authoring_version: 1,
spec_version: 121,
spec_version: 122,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
2 changes: 1 addition & 1 deletion runtime/bajun/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("bajun"),
impl_name: create_runtime_str!("bajun"),
authoring_version: 1,
spec_version: 121,
spec_version: 122,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 7fd125c

Please sign in to comment.