Release 1.10.0
Update version number and update documentation * Fix `COMP_WORDS bad array subscript` bug (#64) * Transition to semantic versioning
This commit is contained in:
parent
79e149ed25
commit
68937f3cad
5 changed files with 13 additions and 4 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
|||
1.10.0
|
||||
* Fix `COMP_WORDS bad array subscript` bug (#64)
|
||||
* Transition to semantic versioning
|
||||
|
||||
1.09
|
||||
* Add Bash completion script (#60)
|
||||
* Support WSL detection (#61)
|
||||
|
|
|
@ -3,6 +3,7 @@ CONTRIBUTORS
|
|||
Tim Byrne
|
||||
Espen Henriksen
|
||||
Jan Schulz
|
||||
Paraplegic Racehorse
|
||||
Patrick Hof
|
||||
Satoshi Ohki
|
||||
Siôn Le Roux
|
||||
|
@ -10,4 +11,4 @@ Sébastien Gross
|
|||
Tomas Cernaj
|
||||
Uroš Golja
|
||||
Franciszek Madej
|
||||
Paraplegic Racehorse
|
||||
Klas Mellbourn
|
||||
|
|
2
yadm
2
yadm
|
@ -19,7 +19,7 @@ if [ -z "$BASH_VERSION" ]; then
|
|||
[ "$YADM_TEST" != 1 ] && exec bash "$0" "$@"
|
||||
fi
|
||||
|
||||
VERSION=1.09
|
||||
VERSION=1.10.0
|
||||
|
||||
YADM_WORK="$HOME"
|
||||
YADM_DIR="$HOME/.yadm"
|
||||
|
|
2
yadm.1
2
yadm.1
|
@ -1,5 +1,5 @@
|
|||
." vim: set spell so=8:
|
||||
.TH yadm 1 "4 May 2017" "1.09"
|
||||
.TH yadm 1 "10 May 2017" "1.10.0"
|
||||
.SH NAME
|
||||
yadm \- Yet Another Dotfiles Manager
|
||||
.SH SYNOPSIS
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
Summary: Yet Another Dotfiles Manager
|
||||
Name: yadm
|
||||
Version: 1.09
|
||||
Version: 1.10.0
|
||||
Release: 1%{?dist}
|
||||
URL: https://github.com/TheLocehiliosan/yadm
|
||||
License: GPLv3
|
||||
|
@ -37,6 +37,10 @@ install -m 644 yadm.1 ${RPM_BUILD_ROOT}%{_mandir}/man1
|
|||
%doc CHANGES CONTRIBUTORS README.md completion/yadm.bash_completion
|
||||
|
||||
%changelog
|
||||
* Wed May 10 2017 Tim Byrne <sultan@locehilios.com> - 1.10.0-1
|
||||
- Bump version to 1.10.0
|
||||
- Transition to semantic versioning
|
||||
|
||||
* Thu May 4 2017 Tim Byrne <sultan@locehilios.com> - 1.09-1
|
||||
- Bump version to 1.09
|
||||
- Add yadm.bash_completion
|
||||
|
|
Loading…
Reference in a new issue