From 96ca3cc85ba07c2ce6d269c953c27d086be1c30d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kat=20March=C3=A1n?= Date: Sun, 22 Aug 2021 21:53:44 -0700 Subject: [PATCH] 1.0.1 --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 4 ++-- miette-derive/Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd96716..0a4fe7e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ + +## 1.0.1 (2021-08-23) + +This is a (literally) small release. I noticed that the crate's size had +increased significantly before I realized cargo was including the `images/` +folder. This is not needed, as these images are just hosted on GitHub. + +`miette` should be smaller now, I hope :) + +#### Bug Fixes + +* **crate:** reduce crate size by removing images ([5f74da67](https://github.com/zkat/miette/commit/5f74da671f2444efc4840c11492773a46cecf7e9)) + + ## 1.0.0 (2021-08-23) diff --git a/Cargo.toml b/Cargo.toml index a8034b8..3abcd36 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miette" -version = "1.0.0" +version = "1.0.1" authors = ["Kat Marchán "] description = "Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers." categories = ["rust-patterns"] @@ -13,7 +13,7 @@ exclude = ["images/", "tests/", "miette-derive/"] [dependencies] thiserror = "1.0.26" -miette-derive = { version = "=1.0.0", path = "miette-derive" } +miette-derive = { version = "=1.0.1", path = "miette-derive" } once_cell = "1.8.0" owo-colors = "2.0.0" atty = "0.2.14" diff --git a/miette-derive/Cargo.toml b/miette-derive/Cargo.toml index 76b9a2c..3019593 100644 --- a/miette-derive/Cargo.toml +++ b/miette-derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "miette-derive" -version = "1.0.0" +version = "1.0.1" authors = ["Kat Marchán "] edition = "2018" license = "Apache-2.0"