diff --git a/CHANGELOG.md b/CHANGELOG.md index 89aa55d..2c5d7d6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ +## [0.2.0] - 2023-03-17 + +### Added + +- Logging + +### Changed + +- Icemelter will now avoid introducing spurrious errors by default + ## [0.1.0] - 2023-03-16 Initial release! diff --git a/Cargo.lock b/Cargo.lock index 314a445..67a5869 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -135,7 +135,7 @@ checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286" [[package]] name = "icemelter" -version = "0.1.0" +version = "0.2.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 78037c5..9a2ab40 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icemelter" -version = "0.1.0" +version = "0.2.0" description = "Tool to minimize files that trigger internal compiler errors (ICEs)" keywords = ["ice", "rustc"] edition = "2021"