Release 1.12.0
Update version number and update documentation * 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`
This commit is contained in:
parent
8af5425dc3
commit
09a018ea5a
6 changed files with 26 additions and 7 deletions
7
CHANGES
7
CHANGES
|
@ -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
|
1.11.1
|
||||||
* Create private dirs prior to merge (#74)
|
* Create private dirs prior to merge (#74)
|
||||||
|
|
||||||
|
|
|
@ -3,13 +3,15 @@ CONTRIBUTORS
|
||||||
Tim Byrne
|
Tim Byrne
|
||||||
Espen Henriksen
|
Espen Henriksen
|
||||||
Cameron Eagans
|
Cameron Eagans
|
||||||
|
Klas Mellbourn
|
||||||
Jan Schulz
|
Jan Schulz
|
||||||
Patrick Hof
|
|
||||||
Satoshi Ohki
|
|
||||||
Siôn Le Roux
|
Siôn Le Roux
|
||||||
Sébastien Gross
|
Sébastien Gross
|
||||||
|
Thomas Luzat
|
||||||
Tomas Cernaj
|
Tomas Cernaj
|
||||||
Uroš Golja
|
Uroš Golja
|
||||||
|
japm48
|
||||||
Franciszek Madej
|
Franciszek Madej
|
||||||
Klas Mellbourn
|
|
||||||
Paraplegic Racehorse
|
Paraplegic Racehorse
|
||||||
|
Patrick Hof
|
||||||
|
Satoshi Ohki
|
||||||
|
|
2
yadm
2
yadm
|
@ -19,7 +19,7 @@ if [ -z "$BASH_VERSION" ]; then
|
||||||
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
|
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
VERSION=1.11.1
|
VERSION=1.12.0
|
||||||
|
|
||||||
YADM_WORK="$HOME"
|
YADM_WORK="$HOME"
|
||||||
YADM_DIR="$HOME/.yadm"
|
YADM_DIR="$HOME/.yadm"
|
||||||
|
|
2
yadm.1
2
yadm.1
|
@ -1,5 +1,5 @@
|
||||||
." vim: set spell so=8:
|
." 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
|
.SH NAME
|
||||||
yadm \- Yet Another Dotfiles Manager
|
yadm \- Yet Another Dotfiles Manager
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
|
6
yadm.md
6
yadm.md
|
@ -409,6 +409,12 @@
|
||||||
.ssh/*.key
|
.ssh/*.key
|
||||||
.gnupg/*.gpg
|
.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
|
The yadm encrypt command will find all files matching the patterns, and
|
||||||
prompt for a password. Once a password has confirmed, the matching
|
prompt for a password. Once a password has confirmed, the matching
|
||||||
files will be encrypted and saved as $HOME/.yadm/files.gpg. The pat-
|
files will be encrypted and saved as $HOME/.yadm/files.gpg. The pat-
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Summary: Yet Another Dotfiles Manager
|
Summary: Yet Another Dotfiles Manager
|
||||||
Name: yadm
|
Name: yadm
|
||||||
Version: 1.11.1
|
Version: 1.12.0
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
URL: https://github.com/TheLocehiliosan/yadm
|
URL: https://github.com/TheLocehiliosan/yadm
|
||||||
License: GPLv3
|
License: GPLv3
|
||||||
|
@ -34,9 +34,13 @@ install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
|
||||||
%attr(755,root,root) %{_bindir}/yadm
|
%attr(755,root,root) %{_bindir}/yadm
|
||||||
%attr(644,root,root) %{_mandir}/man1/*
|
%attr(644,root,root) %{_mandir}/man1/*
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion
|
%doc CHANGES CONTRIBUTORS README.md completion/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 25 2017 Tim Byrne <sultan@locehilios.com> - 1.12.0-1
|
||||||
|
- Bump version to 1.12.0
|
||||||
|
- Include zsh completion
|
||||||
|
|
||||||
* Wed Aug 23 2017 Tim Byrne <sultan@locehilios.com> - 1.11.1-1
|
* Wed Aug 23 2017 Tim Byrne <sultan@locehilios.com> - 1.11.1-1
|
||||||
- Bump version to 1.11.1
|
- Bump version to 1.11.1
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue