Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2.0.1 #200

Merged
merged 4 commits into from
Feb 5, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.

## [Unreleased] -

## [2.0.1] - 2018-02-05
- Fix bug related to DESTDIR included in recap script [(#195)][195] [(#198)][198].

## [2.0.0] - 2018-01-22
- Add plugin support [(#155)][155].
- Split recap functionality between core functions and plugins.
Expand Down Expand Up @@ -207,6 +210,8 @@ All notable changes to this project will be documented in this file.
[170]: https://github.com/rackerlabs/recap/issues/170
[174]: https://github.com/rackerlabs/recap/issues/174
[175]: https://github.com/rackerlabs/recap/issues/175
[195]: https://github.com/rackerlabs/recap/issues/195
[198]: https://github.com/rackerlabs/recap/issues/198

<!---
# One-liners to help generate content for CHANGELOG.md
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ uninstall: uninstall-base uninstall-man uninstall-doc uninstall-$(type)

install-base:
@echo "Installing scripts..."
@sed -i.orig 's|^\s*\(declare\s\+-r\s\+LIBDIR=\).*$$|\1"$(DESTDIR)$(LIBDIR)/recap"|' src/recap
@sed -i.orig 's|^\s*\(declare\s\+-r\s\+LIBDIR=\).*$$|\1"$(LIBDIR)/recap"|' src/recap
@install -Dm0755 src/recap $(DESTDIR)$(BINDIR)/recap
@install -Dm0755 src/recaplog $(DESTDIR)$(BINDIR)/recaplog
@install -Dm0755 src/recaptool $(DESTDIR)$(BINDIR)/recaptool
Expand Down
2 changes: 1 addition & 1 deletion src/recap
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#~

## Version
declare -r _VERSION='2.0.0'
declare -r _VERSION='2.0.1'

## Default settings(can *NOT* be overridden in config file)
declare -r DATE=$( date +%F_%T )
Expand Down
2 changes: 1 addition & 1 deletion src/recaplog
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#~

## Version
declare -r _VERSION='2.0.0'
declare -r _VERSION='2.0.1'

## Default settings
PATH=/bin:/usr/bin:/sbin:/usr/sbin
Expand Down
2 changes: 1 addition & 1 deletion src/recaptool
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#~

## Version
declare -r _VERSION='2.0.0'
declare -r _VERSION='2.0.1'

## Default settings
BASEDIR="/var/log/recap"
Expand Down