Fix pkg_resources module not found in packages report.
0.3.0
Extend report functionality.
We add a new method called metric_report to HumbugReporter that collects various metrics such as CPU usage, GPU usage, RAM usage, and so on. This method will return the collected metrics as a bugout entry.
You can push it to bugout or use it locally.
0.2.8
Blacklisting parameters in feature reports allow you to specify which parameters from an argument list to filter out.
0.2.7
Fixes error when importing `HumbugReporter` in Python 3.6 environments.
The issue was caused by the fact that `dataclasses` was only introduces as a standard package in Python 3.7. We fixed the issue by conditionally installing the [`dataclasses` backport](https://pypi.org/project/dataclasses/) when the Python version is 3.6.
0.2.6
record_call` and `record_error` decorators now correctly wrap their functions so that docstrings, name, etc. pass through.