From 061710280754e129c1d12a74997516aa0060f05f Mon Sep 17 00:00:00 2001 From: "Tony Arcieri (iqlusion)" Date: Tue, 15 Oct 2024 13:31:15 -0600 Subject: [PATCH] abscissa_core v0.8.1 (#933) --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- core/Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) 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/"