diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ff5506..d49bc7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.8.1] (2024-10-15) +### Fixed +- Path to README.md for `abscissa_core` ([#932]) + ## [0.8.0] (2024-10-15) ### Added - `Application::boot_with_args` ([#805]) @@ -563,6 +567,9 @@ impl std::error::Error for Error { - Initial release +[0.8.1]: https://github.com/iqlusioninc/abscissa/pull/933 +[#932]: https://github.com/iqlusioninc/abscissa/pull/932 + [0.8.0]: https://github.com/iqlusioninc/abscissa/pull/930 [#805]: https://github.com/iqlusioninc/abscissa/pull/805 [#856]: https://github.com/iqlusioninc/abscissa/pull/856 diff --git a/Cargo.lock b/Cargo.lock index f437100..768a7e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -16,7 +16,7 @@ dependencies = [ [[package]] name = "abscissa_core" -version = "0.8.0" +version = "0.8.1" dependencies = [ "abscissa_derive", "arc-swap", diff --git a/core/Cargo.toml b/core/Cargo.toml index 9e9c971..bc1d406 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -5,7 +5,7 @@ Application microframework with support for command-line option parsing, configuration, error handling, logging, and terminal interactions. This crate contains the framework's core functionality. """ -version = "0.8.0" +version = "0.8.1" license = "Apache-2.0" authors = ["Tony Arcieri "] homepage = "https://github.com/iqlusioninc/abscissa/"