Skip to content

Commit 9ce5b7d

Browse files
committed
0.1.2
1 parent 683f3b7 commit 9ce5b7d

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.2 - 2019-01-09
9+
10+
### Fixed
11+
- Updated to use absolute path when invoking defaults command.
12+
- Updated dependencies to latest versions.
13+
814
## 0.1.1 - 2019-12-14
915

1016
### Added

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.1"
3+
version = "0.1.2"
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.1")
12+
.version("0.1.2")
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)