diff --git a/.travis.yml b/.travis.yml index 7129036..d9e603f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ --- language: bash +dist: xenial sudo: enabled branches: only: @@ -33,6 +34,12 @@ matrix: - name: "Debian (buster)" env: - DISTRO='debian:buster' + - name: "Fedora (latest)" + env: + - DISTRO='fedora:latest' + - name: "Fedora (rawhide)" + env: + - DISTRO='fedora:rawhide' before_install: - docker pull ${DISTRO} @@ -53,7 +60,10 @@ install: script: - docker exec recap_on_${DISTRO/:/_} bash -c 'recap --version' + - docker exec recap_on_${DISTRO/:/_} bash -c 'recaplog --version' - docker exec recap_on_${DISTRO/:/_} /recap/tests/run_recap.sh - docker exec recap_on_${DISTRO/:/_} bash -c 'ls -tr /var/log/recap/*log | xargs tail -v -n+0' + - docker exec recap_on_${DISTRO/:/_} /recap/tests/run_recaplog.sh + - docker exec recap_on_${DISTRO/:/_} bash -c 'tail -v -n+0 /var/log/recap/recaplog.log' ... diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fcfc8f..eea4d30 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,13 +3,19 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - -## [2.0.2] - 2018-02-25 +## [2.1.0] - 2019-04-12 +- Remove signal `17` in `recaplog` [(#208)][208] +- Use posix for better regex support in el6 [(#207)][207] +- Fix hostname definition [(#213)][213] +- Add system lock plugin [(#189)][189] + +## [2.0.2] - 2019-02-25 - Dynamically find CPU field to sort top CPU report [(#203)][203] -## [2.0.1] - 2018-02-05 +## [2.0.1] - 2019-02-05 - Fix bug related to DESTDIR included in recap script [(#195)][195] [(#198)][198]. -## [2.0.0] - 2018-01-22 +## [2.0.0] - 2019-01-22 - Add plugin support [(#155)][155]. - Split recap functionality between core functions and plugins. - Plugins are not enabled by default on this version. @@ -213,9 +219,13 @@ 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 +[189]: https://github.com/rackerlabs/recap/issues/189 [195]: https://github.com/rackerlabs/recap/issues/195 [198]: https://github.com/rackerlabs/recap/issues/198 [203]: https://github.com/rackerlabs/recap/issues/203 +[207]: https://github.com/rackerlabs/recap/issues/207 +[208]: https://github.com/rackerlabs/recap/issues/208 +[213]: https://github.com/rackerlabs/recap/pull/213