diff --git a/.semver b/.semver index 1e5a05bc..5d0ec70c 100644 --- a/.semver +++ b/.semver @@ -1,5 +1,5 @@ --- :major: 2 :minor: 7 -:patch: 1 +:patch: 2 :special: '' diff --git a/artifacts/bintray.json b/artifacts/bintray.json index 8aaa414f..85cd84ff 100644 --- a/artifacts/bintray.json +++ b/artifacts/bintray.json @@ -10,10 +10,10 @@ "licenses": ["MIT"] }, "version": { - "name": "v2.7.1", + "name": "v2.7.2", "desc": "Latest version of PhpMetrics", "released": "2020-06-27", - "vcs_tag": "v2.7.1", + "vcs_tag": "v2.7.2", "attributes": [], "gpgSign": false }, diff --git a/artifacts/debian/changelog b/artifacts/debian/changelog index d5b151ce..d5a6f1d8 100644 --- a/artifacts/debian/changelog +++ b/artifacts/debian/changelog @@ -1,3 +1,16 @@ +phpmetrics (2.7.0) unstable; urgency=low + * Fixed colors of JSON file in markdown + * Fixed markdown and hidden char + * Fix #429, bug when generating html report. + * Fix #431, only outdated packages will be reported + * Merge pull request #430 from pts-contrib/bug-429 + * Merge pull request #432 from pts-contrib/bug-431 + * fix contribution typo + * releasing v2.7.1 + * Fix path of reporter + + -- Jean-François Lépine Sat, 27 Jun 2020 15:06:49 +0200 + phpmetrics (2.6.2) unstable; urgency=low * New composer report and improved UI * Merge pull request #424 from phpmetrics/ui_composer @@ -823,6 +836,8 @@ phpmetrics (1.8.2) unstable; urgency=low + + diff --git a/doc/installation.md b/doc/installation.md index b765872c..825b2cc4 100644 --- a/doc/installation.md +++ b/doc/installation.md @@ -16,14 +16,14 @@ export PATH=~/.composer/vendor/bin:$PATH ## Phar ```bash -curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.7.1/phpmetrics.phar +curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.7.2/phpmetrics.phar chmod +x phpmetrics.phar && mv phpmetrics.phar /usr/local/bin/phpmetrics ``` ## Apt (Debian, Ubuntu...) ```bash -curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.7.1/phpmetrics.deb +curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.7.2/phpmetrics.deb dpkg -i phpmetrics.deb ``` diff --git a/releases/phpmetrics.phar b/releases/phpmetrics.phar index 67bcc988..154af48a 100755 Binary files a/releases/phpmetrics.phar and b/releases/phpmetrics.phar differ diff --git a/src/functions.php b/src/functions.php index 8d162ac3..4e1f46f5 100644 --- a/src/functions.php +++ b/src/functions.php @@ -162,7 +162,7 @@ function recurse_copy($src, $dst) */ function getVersion() { - return 'v2.7.1'; + return 'v2.7.2'; } /**