diff --git a/CHANGELOG.md b/CHANGELOG.md index 3479337..6ab3894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.1.1 - 2019-12-14 + +### Added +- Added support for dry-run flag. + +### Fixed +- Fixed various warnings from clippy linter. + ## 0.1.0 - 2019-12-12 - Initial release. diff --git a/Cargo.lock b/Cargo.lock index d1a2e17..fd1727e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18,7 +18,7 @@ dependencies = [ [[package]] name = "apply-user-defaults" -version = "0.1.0" +version = "0.1.1" dependencies = [ "assert_cli 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index fe5e7eb..f94fa9c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "apply-user-defaults" -version = "0.1.0" +version = "0.1.1" authors = ["Michael Sanders "] description = "A small utility to set macOS user defaults declaratively from a YAML file." repository = "https://github.com/zero-sh/apply-user-defaults" diff --git a/src/cli.rs b/src/cli.rs index c273752..d837d9b 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -9,7 +9,7 @@ use clap::{App, Arg}; pub fn build_cli() -> App<'static, 'static> { App::new("apply-user-defaults") - .version("0.1.0") + .version("0.1.1") .author("Michael Sanders ") .about("Apply macOS user defaults in bulk from YAML file.") .arg(