diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d66f0a..570749f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +## [0.8.12] +- Enhancement: Added functionality to compute delta metrics between two successive releases + ## [0.8.11] - Bugfix: Caught missing TypeError that made the program fail when executing AnsibleMetrics on an empty script diff --git a/repominer/cli.py b/repominer/cli.py index 3bb8179..fc00d45 100644 --- a/repominer/cli.py +++ b/repominer/cli.py @@ -13,7 +13,7 @@ from repominer.mining.ansible import AnsibleMiner from repominer.mining.tosca import ToscaMiner -VERSION = '0.8.11' +VERSION = '0.8.12' def valid_dir_or_url(x: str) -> str: diff --git a/setup.py b/setup.py index 3c53f5c..70a3382 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ with open("README.md", "r") as fh: long_description = fh.read() -VERSION = '0.8.11' +VERSION = '0.8.12' setup(name='repository-miner', version=VERSION,