From 48574b74a3f9d7eed93716eab94e1ef9a4ce907b Mon Sep 17 00:00:00 2001 From: Thane Thomson Date: Thu, 16 Sep 2021 11:39:15 -0400 Subject: [PATCH] Release v0.4.1 (#21) * Build changelog Signed-off-by: Thane Thomson * Build the changelog Signed-off-by: Thane Thomson * Bump version to v0.4.1 Signed-off-by: Thane Thomson * Update Cargo.lock Signed-off-by: Thane Thomson --- .../bug-fixes/19-component-name.md | 0 .changelog/v0.4.1/summary.md | 1 + CHANGELOG.md | 9 +++++++++ Cargo.lock | 10 +++++----- Cargo.toml | 2 +- 5 files changed, 16 insertions(+), 6 deletions(-) rename .changelog/{unreleased => v0.4.1}/bug-fixes/19-component-name.md (100%) create mode 100644 .changelog/v0.4.1/summary.md diff --git a/.changelog/unreleased/bug-fixes/19-component-name.md b/.changelog/v0.4.1/bug-fixes/19-component-name.md similarity index 100% rename from .changelog/unreleased/bug-fixes/19-component-name.md rename to .changelog/v0.4.1/bug-fixes/19-component-name.md diff --git a/.changelog/v0.4.1/summary.md b/.changelog/v0.4.1/summary.md new file mode 100644 index 0000000..7b9a8c6 --- /dev/null +++ b/.changelog/v0.4.1/summary.md @@ -0,0 +1 @@ +Just one minor bug fix relating to component rendering. diff --git a/CHANGELOG.md b/CHANGELOG.md index 36a134a..4f12ff9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # CHANGELOG +## v0.4.1 + +Just one minor bug fix relating to component rendering. + +### BUG FIXES + +- Fixed component name rendering + ([#19](https://github.com/informalsystems/unclog/issues/19)) + ## v0.4.0 This version is a pretty major breaking change from the previous one. Some of diff --git a/Cargo.lock b/Cargo.lock index 743bd8d..313f0a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -264,9 +264,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "libc" -version = "0.2.101" +version = "0.2.102" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3cb00336871be5ed2c8ed44b60ae9959dc5b9f08539422ed43f09e34ecaeba21" +checksum = "a2a5ac8f984bfcf3a823267e5fde638acc3325f6496633a5da6bb6eb2171e103" [[package]] name = "libgit2-sys" @@ -597,9 +597,9 @@ dependencies = [ [[package]] name = "serde_json" -version = "1.0.67" +version = "1.0.68" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a7f9e390c27c3c0ce8bc5d725f6e4d30a29d26659494aa4b17535f7522c5c950" +checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8" dependencies = [ "itoa", "ryu", @@ -787,7 +787,7 @@ checksum = "56dee185309b50d1f11bfedef0fe6d036842e3fb77413abef29f8f8d1c5d4c1c" [[package]] name = "unclog" -version = "0.4.0" +version = "0.4.1" dependencies = [ "env_logger", "git2", diff --git a/Cargo.toml b/Cargo.toml index d8d6ec6..6d1f525 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "unclog" -version = "0.4.0" +version = "0.4.1" authors = ["Thane Thomson "] edition = "2018" license = "Apache-2.0"