Skip to content
This repository has been archived by the owner on Jun 29, 2022. It is now read-only.

Commit

Permalink
Bump version to 0.0.31. Closes #492.
Browse files Browse the repository at this point in the history
  • Loading branch information
chambridge committed Nov 29, 2017
1 parent 91ae258 commit bad44be
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/issue_template.md
Expand Up @@ -19,7 +19,7 @@ ___
## Bug Report

### Version of rho:
[ 0.27, 0.28, 0.29, 0.30 ]
[ 0.0.28, 0.0.29, 0.0.30, 0.0.31 ]

### Expected behavior:
Describe the expected behavior for the program.
Expand Down
4 changes: 2 additions & 2 deletions doc/Makefile
Expand Up @@ -28,8 +28,8 @@ manpage:
pandoc source/man.rst \
--standalone -t man -o rho.1 \
--variable=section:1 \
--variable=date:'August 29, 2017' \
--variable=footer:'version 0.0.28' \
--variable=date:'November 29, 2017' \
--variable=footer:'version 0.0.31' \
--variable=header:'rho User Commands'

man-html:
Expand Down
6 changes: 5 additions & 1 deletion rho.spec
@@ -1,7 +1,7 @@
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}

Name: rho
Version: 0.0.30
Version: 0.0.31
Release: 1%{?dist}
Summary: An SSH system profiler

Expand Down Expand Up @@ -63,6 +63,10 @@ rm -rf $RPM_BUILD_ROOT
%{_datadir}/ansible/%{name}/roles/*

%changelog
* Wed Nov 29 2017 Noah Lavine <nlavine@redhat.com> 0.0.31-1
- Enhancements to capture presence of JBoss Fuse from init subscriptions
- Enhancements to find common JBoss Fuse files using locate command
- Enhancements to find common JBoss BRMS files using locate command
* Wed Nov 8 2017 Noah Lavine <nlavine@redhat.com> 0.0.30-1
- Enhancements to capture presence of EAP from init subscriptions
- Enhancements to find common EAP files using locate command
Expand Down
2 changes: 1 addition & 1 deletion rho/__init__.py
@@ -1,2 +1,2 @@
# pylint: disable=missing-docstring
__version__ = '0.0.30'
__version__ = '0.0.31'
6 changes: 3 additions & 3 deletions roles/brms/tasks/main.yml
Expand Up @@ -7,13 +7,13 @@
raw: locate --basename business-central | egrep '.*/business-central(.war)?/?$'
register: jboss_brms_business_central_candidates
ignore_errors: yes
when: '"jboss.brms" in facts_to_collect'
when: 'have_locate and "jboss.brms" in facts_to_collect'

- name: find kie-server candidates
raw: locate --basename 'kie-server*' | egrep --invert-match '(.*.xml)|(.*.jar)'
register: jboss_brms_kie_server_candidates
ignore_errors: yes
when: '"jboss.brms" in facts_to_collect'
when: 'have_locate and "jboss.brms" in facts_to_collect'

# Combine the above with any EAP_HOME directories we've found

Expand Down Expand Up @@ -43,7 +43,7 @@
raw: locate --basename 'kie-api*'
register: jboss_brms_locate_kie_api
ignore_errors: yes
when: '"jboss.brms" in facts_to_collect'
when: 'have_locate and "jboss.brms" in facts_to_collect'

# Tasks that do filesystem scans. This will scan linux systems for
# JBoss BRMS or Drools Installations
Expand Down

0 comments on commit bad44be

Please sign in to comment.