diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c5c123..7e31c75 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on [Common Changelog](https://common-changelog.org/). +## [0.1.3] - 2022-10-29 + +### Added + +- Add more information in README (@paulrberg) + +### Changed + +- Fix typos in README (@jordaniza, @paulrberg) +- Improve usage guides in README (@paulrberg) +- Make `IS_TEST` virtual (@paulrberg) +- Remove superfluous `bytes20` cast (@paulrberg) +- Update fuzzing configuration in `foundry.toml` (@paulrberg) + ## [0.1.2] - 2022-07-17 ### Fixed @@ -23,6 +37,7 @@ The format is based on [Common Changelog](https://common-changelog.org/). - First release (@paulrberg) +[0.1.3]: https://github.com/paulrberg/prb-test/releases/tag/v0.1.3 [0.1.2]: https://github.com/paulrberg/prb-test/releases/tag/v0.1.2 [0.1.1]: https://github.com/paulrberg/prb-test/releases/tag/v0.1.1 [0.1.0]: https://github.com/paulrberg/prb-test/releases/tag/v0.1.0 diff --git a/README.md b/README.md index 4eee21e..24b7f13 100644 --- a/README.md +++ b/README.md @@ -27,14 +27,14 @@ replacement for DSTest. First, run the install step: ```sh -forge install --no-commit paulrberg/prb-test@0.1.2 +forge install --no-commit paulrberg/prb-test@0.1.3 ``` Your `.gitmodules` file should now contain the following entry: ```toml [submodule "lib/prb-test"] - branch = "0.1.2" + branch = "0.1.3" path = "lib/prb-test" url = "https://github.com/paulrberg/prb-test" ``` diff --git a/package.json b/package.json index 9815080..3425a33 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@prb/test", "description": "Modern collection of testing assertions and logging utilities for Solidity", - "version": "0.1.2", + "version": "0.1.3", "author": { "name": "Paul Razvan Berg", "url": "https://github.com/paulrberg"