diff --git a/.semver b/.semver index cda62d45..5bf001da 100644 --- a/.semver +++ b/.semver @@ -1,5 +1,5 @@ --- :major: 2 :minor: 6 -:patch: 0 +:patch: 1 :special: '' diff --git a/artifacts/bintray.json b/artifacts/bintray.json index 94ccea53..c4ab613d 100644 --- a/artifacts/bintray.json +++ b/artifacts/bintray.json @@ -10,10 +10,10 @@ "licenses": ["MIT"] }, "version": { - "name": "v2.6.0", + "name": "v2.6.1", "desc": "Latest version of PhpMetrics", - "released": "2020-03-28", - "vcs_tag": "v2.6.0", + "released": "2020-04-02", + "vcs_tag": "v2.6.1", "attributes": [], "gpgSign": false }, diff --git a/artifacts/debian/changelog b/artifacts/debian/changelog index 57b32a0c..0c5bb1c6 100644 --- a/artifacts/debian/changelog +++ b/artifacts/debian/changelog @@ -1,3 +1,44 @@ +phpmetrics (2.5.0) unstable; urgency=low + * Documented how to release (#392) + * Added editor config file (#393) + * Updated changelog (#394) + * improve docblocks + * Added more codesniffer rules + * Merge pull request #396 from phpmetrics/add-more-phpcs-rules + * Merge pull request #395 from phpmetrics/docblock-improvements + * Way to download report + * Merge pull request #399 from phpmetrics/download_chart + * Exclude doc and artifacts from phar + * Explicitly define the class \Hal\Component\Ast\NodeTraverser to make PhpMetrics work using composer --classmap-authoritative. (#402) + * Merge pull request #400 from phpmetrics/exclude-phar-files + * Resolve PHP7 getters / setters (#405) + * Ensure the packagist license is an array so they can be displayed. (#404) + * Fix warning "Division by zero" when no package is defined. (#401) + * move templates out of src + * Remove folders from phpcs + * Merge pull request #406 from phpmetrics/move-templates-out + * Provide new issue template format. + * Added Slack link (#411) + * Provide configuration option "--maintainability-index-without-comments". + * Remove command line and always provide metrics MI without comments additionnaly from MI. Add a carousel in the main HTML report page to display both graph at the same time. + * Move new files for carousel inside new template folder after rebasing from master. + * Fix bug with dots in the carousel + add titles on dots for accessibility. + * add metrics description file + * Merge pull request #408 from phpmetrics/new-issue-tpl + * Merge pull request #412 from repzy/metrics-file + * Merge pull request #407 from phpmetrics/issue-325-provide-miwoc + * fix releasing script + * releasing v2.6.0 + * Force GPG key for relasing + * Improved page rank report, and UI #416 + * Merge pull request #420 from phpmetrics/416_improved_pagerank + * hot fixing phar + * Merge pull request #422 from phpmetrics/hf_phar + * Remove not useful constant + * Merge pull request #423 from phpmetrics/improved_code + + -- Jean-François Lépine Thu, 02 Apr 2020 21:54:40 +0200 + phpmetrics (2.4.1) unstable; urgency=low * Test on PHP 7.3 * Don't leave notice when array is small @@ -736,3 +777,5 @@ phpmetrics (1.8.2) unstable; urgency=low + + diff --git a/doc/installation.md b/doc/installation.md index 8a1c70db..992de7e2 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.6.0/phpmetrics.phar +curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.1/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.6.0/phpmetrics.deb +curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.1/phpmetrics.deb dpkg -i phpmetrics.deb ``` diff --git a/releases/phpmetrics.phar b/releases/phpmetrics.phar index 8bef76ca..7065d9d6 100755 Binary files a/releases/phpmetrics.phar and b/releases/phpmetrics.phar differ diff --git a/src/functions.php b/src/functions.php index ae3d320d..8fc00f0b 100644 --- a/src/functions.php +++ b/src/functions.php @@ -162,5 +162,5 @@ function recurse_copy($src, $dst) */ function getVersion() { - return 'v2.6.0'; + return 'v2.6.1'; }