# 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). ## [Unreleased] ## [0.1.0] - 2023-08-27 ## Changed - Renamed project `process-lib` in order to make it generic. ## [0.0.5] - 2023-07-02 ## Added - Implemented `Into>` for `CmdOutput`. ## Changed - Moved `CmdOuput::try_into_string` to `TryFrom`. ## [0.0.4] - 2023-07-02 ### Changed - Changed the way exit code is handled: it now returns an error `InvalidExitStatusCodeNonZeroError` when the exit code is different than `0`, and the exit code is not accessible anymore from `CmdOutput`. - Changed `CmdOutput` shape, it is now a simple unit struct holding the output as `Vec`. - Renamed `CmdOutput::read_out()` by `try_into_string`. - Renamed `CmdOutput::read_out_lossy()` by `to_string_lossy`. ## [0.0.3] - 2023-07-01 ### Added - Added `CmdOutput::read_out()` function that reads command output as string. If the exit code is different than `0`, reads the error output instead. - Added `CmdOutput::read_out_lossy()` function, same as `read_out()` but lossy. ### Changed - Made the code async using the tokio async runtime. - Renamed `CmdOutput::stdout` by `out`. - Renamed `CmdOutput::stderr` by `err`. ## [0.0.2] - 2023-05-19 ### Added - Added missing implementations `Deref` and `From`. ## [0.0.1] - 2023-05-18 ### Added - Imported process code from `pimalaya-email`.