Skip to content

Commit 5265209

Browse files
authored
fix: update metadata version (#2507)
* fix: update metadata version * chore: update CHANGELOG
1 parent c61ff0e commit 5265209

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
- Use marker trait for finding ink! storage `struct` during code analysis - [2499](https://github.com/use-ink/ink/pull/2499)
1212

13+
### Fixed
14+
- Update metadata version to version 6 ‒ [#2507](https://github.com/use-ink/ink/pull/2507)
15+
1316
## Version 6.0.0-alpha
1417

1518
This is our first alpha release for ink! v6. We release it together

crates/metadata/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ use serde::{
7373
///
7474
/// The serialized metadata format (which this represents) is different from the
7575
/// version of this crate or the contract for Rust semantic versioning purposes.
76-
const METADATA_VERSION: u64 = 5;
76+
const METADATA_VERSION: u64 = 6;
7777

7878
/// An entire ink! project for metadata file generation purposes.
7979
#[derive(Debug, Serialize, Deserialize, JsonSchema)]

0 commit comments

Comments
 (0)