Skip to content

Commit

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

* Improve portability of `hostname` (yadm-dev#23)
* Fix incompatibilities between Cygwin and Git for Windows (yadm-dev#26)
* Allow Git program to be configured via yadm.git-program (yadm-dev#30)
* Support alt-links for encrypted files (yadm-dev#34)
* Exit with the same return value as Git (yadm-dev#35)
* Support spaces in alt-link paths (yadm-dev#36)
* Ignore empty lines in .yadm/encrypt (yadm-dev#40)
* Fix typos (yadm-dev#41)
  • Loading branch information
TheLocehiliosan committed Jan 12, 2017
1 parent a097386 commit 672c985
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 11 deletions.
10 changes: 10 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
1.06
* Improve portability of `hostname` (#23)
* Fix incompatibilities between Cygwin and Git for Windows (#26)
* Allow Git program to be configured via yadm.git-program (#30)
* Support alt-links for encrypted files (#34)
* Exit with the same return value as Git (#35)
* Support spaces in alt-link paths (#36)
* Ignore empty lines in .yadm/encrypt (#40)
* Fix typos (#41)

1.05
* Improve portability of shebang line (#14)
* Support for symlinked directories (#17)
Expand Down
7 changes: 6 additions & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,10 @@ CONTRIBUTORS

Tim Byrne
Espen Henriksen
Franciszek Madej
Paraplegic Racehorse
Patrick Hof
Satoshi Ohki
Siôn Le Roux
Tomas Cernaj
Uroš Golja
Franciszek Madej
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.05
VERSION=1.06

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 "8 September 2016" "1.05"
.TH yadm 1 "13 January 2017" "1.06"
.SH NAME
yadm \- Yet Another Dotfiles Manager
.SH SYNOPSIS
Expand Down
15 changes: 10 additions & 5 deletions yadm.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,20 +192,25 @@
Specify an alternate program to use instead of "gpg". By
default, the first "gpg" found in $PATH is used.

yadm.git-program
Specify an alternate program to use instead of "git". By
default, the first "git" found in $PATH is used.

## ALTERNATES
When managing a set of files across different systems, it can be useful
to have an automated way of choosing an alternate version of a file for
a different operating system, host, or user. yadm implements a feature
which will automatically create a symbolic link to the appropriate ver-
sion of a file, as long as you follow a specific naming convention.
sion of a file, as long as you follow a specific naming convention.
yadm can detect files with names ending in:

## or ##OS or ##OS.HOSTNAME or ##OS.HOSTNAME.USER

If there are any files managed by yadm's repository which match this
naming convention, symbolic links will be created for the most appro-
priate version. This may best be demonstrated by example. Assume the
following files are managed by yadm's repository:
If there are any files managed by yadm's repository, or listed in
$HOME/.yadm/encrypt, which match this naming convention, symbolic links
will be created for the most appropriate version. This may best be
demonstrated by example. Assume the following files are managed by
yadm's repository:

- $HOME/path/example.txt##
- $HOME/path/example.txt##Darwin
Expand Down
6 changes: 3 additions & 3 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.05
Version: 1.06
Release: 1%{?dist}
URL: https://github.com/TheLocehiliosan/yadm
License: GPLv3
Expand Down Expand Up @@ -37,8 +37,8 @@ install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
%doc CHANGES CONTRIBUTORS README.md

%changelog
* Thu Jan 12 2017 Tim Byrne <[email protected]> - 1.05-1
- Bump version to 1.05
* Fri Jan 13 2017 Tim Byrne <[email protected]> - 1.06-1
- Bump version to 1.06

* Tue May 17 2016 Tim Byrne <[email protected]> - 1.04-3
- Add missing docs
Expand Down

0 comments on commit 672c985

Please sign in to comment.