Release 1.09

Update version number and update documentation

* Add Bash completion script (#60)
* Support WSL detection (#61)
* Add introspect command (used by completion)
pull/64/head 1.09
Tim Byrne 7 years ago
parent 356c47a19f
commit 246eab8b52
No known key found for this signature in database
GPG Key ID: 14DB4FC2465A4B12

@ -1,3 +1,8 @@
1.09
* Add Bash completion script (#60)
* Support WSL detection (#61)
* Add introspect command (used by completion)
1.08
* Fix bug alternates based on `CLASS` (#51)
* Support globs and paths with space in .yadm/encrypt (#53, #54)

@ -19,7 +19,7 @@ if [ -z "$BASH_VERSION" ]; then
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
fi
VERSION=1.08
VERSION=1.09
YADM_WORK="$HOME"
YADM_DIR="$HOME/.yadm"

@ -1,5 +1,5 @@
." vim: set spell so=8:
.TH yadm 1 "3 April 2017" "1.08"
.TH yadm 1 "4 May 2017" "1.09"
.SH NAME
yadm \- Yet Another Dotfiles Manager
.SH SYNOPSIS

@ -31,6 +31,8 @@
yadm perms
yadm introspect category
## DESCRIPTION
yadm is a tool for managing a collection of files across multiple com-
puters, using a shared Git repository. In addition, yadm provides a
@ -144,6 +146,11 @@
all managed files to be listed. Otherwise, the list will only
include files from the current directory or below.
introspect category
Report internal yadm data. Supported categories are commands,
configs, repo, and switches. The purpose of introspection is to
support command line completion.
perms Update permissions as described in the PERMISSIONS section. It
is usually unnecessary to run this command, as yadm automati-
cally processes permissions by default. This automatic behavior

@ -1,6 +1,6 @@
Summary: Yet Another Dotfiles Manager
Name: yadm
Version: 1.08
Version: 1.09
Release: 1%{?dist}
URL: https://github.com/TheLocehiliosan/yadm
License: GPLv3
@ -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
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion
%changelog
* Thu May 4 2017 Tim Byrne <sultan@locehilios.com> - 1.09-1
- Bump version to 1.09
- Add yadm.bash_completion
* Mon Apr 3 2017 Tim Byrne <sultan@locehilios.com> - 1.08-1
- Bump version to 1.08

Loading…
Cancel
Save