# Changelog 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.6.0 - 2022-01-10 ### Changed - Move `color_enabled` from `LoggerConfig` to `LoggerOutputConfig`; ## 0.5.0 - 2021-12-07 ### Added - `time` module; - `LoggerConfig::{color_enabled, target_width, level_width, outputs}` methods; ## 0.4.1 - 2021-04-09 ### Added - `auth` module; - `auth::jwt` module; ### Changed - `password` module has been moved to `auth` module; ## 0.4.0 - 2021-04-08 ### Added - `ord::is_unique_sorted`; - `ord::is_sorted`; - `impl Packable for [u8; N]`; - `Packable::unpack_inner`; - `Packable::unpack_unchecked`; - `password` module; ### Changed - `Packable::unpack` is now a default implementation to `Self::unpack_inner::`; ## 0.3.1-alpha - 2021-02-15 ### Added - `LoggerConfig::target_width`; - `LoggerConfig::level_width`; ## 0.3.0-alpha - 2021-01-15 ### Added - `LoggerConfigBuilder::with_output`; ### Changed - Only implement `Packable` for `u128`/`i128` if the platform has the types; ### Removed - `event::Bus` in favour of its inclusion in `bee-runtime`; - `shutdown_stream::ShutdownStream` in favour of its inclusion in `bee-runtime`; - `worker::Worker` in favour of its inclusion in `bee-runtime`; - `shutdown::Shutdown`; ## 0.2.0-alpha - 2021-01-04 ### Added - Impl `Packable` for `Vec`; - `target_filters` option to the logger; - Event bus; - `ShutdownStream::split`; ### Changed - `ShutdownStream::from_fused` takes a `future::Fuse>` instead of a `oneshot::Receiver<()>`; ## 0.1.1-alpha - 2020-11-12 ### Added - Impl `Packable` for `bool`; - Impl `Packable` for `Option`; ### Changed - Make `pack_new` return a `Vec` instead of a `Result`; - Require `Packable::Error` to be `Debug`; ## 0.1.0-alpha - 2020-11-02 ### Added - Logger backend based on [fern](https://crates.io/crates/fern) for the [log](https://crates.io/crates/log) crate; - `Packable` trait to pack and unpack types to and from bytes; - `ShutdownStream` helper to join a shutdown receiver and a regular stream; - Shutdown mechanism to deal with the graceful shutdown of asynchronous workers; - Worker `Error`;