Skip to content

Commit 45a4740

Browse files
committed
0.1.1
1 parent ec2b4af commit 45a4740

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 0.1.1 - 2019-12-14
9+
10+
### Added
11+
- Added support for dry-run flag.
12+
13+
### Fixed
14+
- Fixed various warnings from clippy linter.
15+
816
## 0.1.0 - 2019-12-12
917

1018
- Initial release.

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "apply-user-defaults"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
authors = ["Michael Sanders <michael.sanders@fastmail.com>"]
55
description = "A small utility to set macOS user defaults declaratively from a YAML file."
66
repository = "https://github.com/zero-sh/apply-user-defaults"

src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use clap::{App, Arg};
99

1010
pub fn build_cli() -> App<'static, 'static> {
1111
App::new("apply-user-defaults")
12-
.version("0.1.0")
12+
.version("0.1.1")
1313
.author("Michael Sanders <michael.sanders@fastmail.com>")
1414
.about("Apply macOS user defaults in bulk from YAML file.")
1515
.arg(

0 commit comments

Comments
 (0)