Skip to content

Commit

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

* Add Bash completion script (yadm-dev#60)
* Support WSL detection (yadm-dev#61)
* Add introspect command (used by completion)
  • Loading branch information
TheLocehiliosan committed May 4, 2017
1 parent 356c47a commit 246eab8
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
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.08
VERSION=1.09

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 "3 April 2017" "1.08"
.TH yadm 1 "4 May 2017" "1.09"
.SH NAME
yadm \- Yet Another Dotfiles Manager
.SH SYNOPSIS
Expand Down
7 changes: 7 additions & 0 deletions yadm.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
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.08
Version: 1.09
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
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion

%changelog
* Thu May 4 2017 Tim Byrne <[email protected]> - 1.09-1
- Bump version to 1.09
- Add yadm.bash_completion

* Mon Apr 3 2017 Tim Byrne <[email protected]> - 1.08-1
- Bump version to 1.08

Expand Down

0 comments on commit 246eab8

Please sign in to comment.