mirror of https://github.com/zkat/miette.git
1.0.1
This commit is contained in:
parent
5f74da671f
commit
96ca3cc85b
14
CHANGELOG.md
14
CHANGELOG.md
|
|
@ -1,3 +1,17 @@
|
||||||
|
<a name="1.0.1"></a>
|
||||||
|
## 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))
|
||||||
|
|
||||||
|
|
||||||
<a name="1.0.0"></a>
|
<a name="1.0.0"></a>
|
||||||
## 1.0.0 (2021-08-23)
|
## 1.0.0 (2021-08-23)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "miette"
|
name = "miette"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Kat Marchán <kzm@zkat.tech>"]
|
authors = ["Kat Marchán <kzm@zkat.tech>"]
|
||||||
description = "Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers."
|
description = "Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers."
|
||||||
categories = ["rust-patterns"]
|
categories = ["rust-patterns"]
|
||||||
|
|
@ -13,7 +13,7 @@ exclude = ["images/", "tests/", "miette-derive/"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
thiserror = "1.0.26"
|
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"
|
once_cell = "1.8.0"
|
||||||
owo-colors = "2.0.0"
|
owo-colors = "2.0.0"
|
||||||
atty = "0.2.14"
|
atty = "0.2.14"
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "miette-derive"
|
name = "miette-derive"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
authors = ["Kat Marchán <kzm@zkat.tech>"]
|
authors = ["Kat Marchán <kzm@zkat.tech>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "Apache-2.0"
|
license = "Apache-2.0"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue