Skip to content

Commit

Permalink
Release 1.12.0
Browse files Browse the repository at this point in the history
Update version number and update documentation

* Add basic Zsh completion (yadm-dev#71, yadm-dev#79)
* Support directories in `.yadm/encrypt` (yadm-dev#81, yadm-dev#82)
* Support exclusions in `.yadm/encrypt` (yadm-dev#86)
* Improve portability with printf (yadm-dev#87)
* Eliminate usage of `eval` and `ls`
  • Loading branch information
TheLocehiliosan committed Oct 25, 2017
1 parent 8af5425 commit 09a018e
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
1.12.0
* Add basic Zsh completion (#71, #79)
* Support directories in `.yadm/encrypt` (#81, #82)
* Support exclusions in `.yadm/encrypt` (#86)
* Improve portability with printf (#87)
* Eliminate usage of `eval` and `ls`

1.11.1
* Create private dirs prior to merge (#74)

Expand Down
8 changes: 5 additions & 3 deletions CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ CONTRIBUTORS
Tim Byrne
Espen Henriksen
Cameron Eagans
Klas Mellbourn
Jan Schulz
Patrick Hof
Satoshi Ohki
Siôn Le Roux
Sébastien Gross
Thomas Luzat
Tomas Cernaj
Uroš Golja
japm48
Franciszek Madej
Klas Mellbourn
Paraplegic Racehorse
Patrick Hof
Satoshi Ohki
2 changes: 1 addition & 1 deletion yadm
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [ -z "$BASH_VERSION" ]; then
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
fi

VERSION=1.11.1
VERSION=1.12.0

YADM_WORK="$HOME"
YADM_DIR="$HOME/.yadm"
Expand Down
2 changes: 1 addition & 1 deletion yadm.1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
." vim: set spell so=8:
.TH yadm 1 "23 August 2017" "1.11.1"
.TH yadm 1 "25 October 2017" "1.12.0"
.SH NAME
yadm \- Yet Another Dotfiles Manager
.SH SYNOPSIS
Expand Down
6 changes: 6 additions & 0 deletions yadm.md
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,12 @@
.ssh/*.key
.gnupg/*.gpg

Standard filename expansions (*, ?, [) are supported. Other shell
expansions like brace and tilde are not supported. Spaces in paths are
supported, and should not be quoted. If a directory is specified, its
contents will be included, but not recursively. Paths beginning with a
"!" will be excluded.

The yadm encrypt command will find all files matching the patterns, and
prompt for a password. Once a password has confirmed, the matching
files will be encrypted and saved as $HOME/.yadm/files.gpg. The pat-
Expand Down
8 changes: 6 additions & 2 deletions yadm.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: Yet Another Dotfiles Manager
Name: yadm
Version: 1.11.1
Version: 1.12.0
Release: 1%{?dist}
URL: https://github.com/TheLocehiliosan/yadm
License: GPLv3
Expand Down Expand Up @@ -34,9 +34,13 @@ install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
%attr(755,root,root) %{_bindir}/yadm
%attr(644,root,root) %{_mandir}/man1/*
%license LICENSE
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion
%doc CHANGES CONTRIBUTORS README.md completion/*

%changelog
* Wed Oct 25 2017 Tim Byrne <[email protected]> - 1.12.0-1
- Bump version to 1.12.0
- Include zsh completion

* Wed Aug 23 2017 Tim Byrne <[email protected]> - 1.11.1-1
- Bump version to 1.11.1

Expand Down

0 comments on commit 09a018e

Please sign in to comment.