diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..2632219 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,30 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +The semantic versioning guarantees cover the interface to the substrate runtime which +includes this pallet as a dependency. This module will also add storage migrations whenever +changes require it. Stability with regard to offchain tooling is explicitly excluded from +this guarantee: For example adding a new field to an in-storage data structure will require +changes to frontends to properly display it. However, those changes will still be regarded +as a minor version bump. + +The interface provided to smart contracts will adhere to semver with one exception: Even +major version bumps will be backwards compatible with regard to already deployed contracts. +In other words: Upgrading this pallet will not break pre-existing contracts. + +## [v0.1.1] 2022-01-18 + +### Fixed + +- Stack metering disregarded the activiation frame. +[#2](https://github.com/paritytech/wasm-instrument/pull/2) + +## [v0.1.0] 2022-01-11 + +### Changed + +- Created from [pwasm-utils](https://github.com/paritytech/wasm-utils) by removing unused code and cleaning up docs. diff --git a/Cargo.toml b/Cargo.toml index 607d53a..76de893 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasm-instrument" -version = "0.1.0" +version = "0.1.1" edition = "2021" rust-version = "1.56.1" authors = ["Parity Technologies "]