Skip to content

Commit ec9a174

Browse files
committed
releasing v2.6.0
1 parent 5a40b7b commit ec9a174

File tree

6 files changed

+68
-7
lines changed

6 files changed

+68
-7
lines changed

.semver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 2
3-
:minor: 5
3+
:minor: 6
44
:patch: 0
55
:special: ''

artifacts/bintray.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"licenses": ["MIT"]
1111
},
1212
"version": {
13-
"name": "v2.5.0",
13+
"name": "v2.6.0",
1414
"desc": "Latest version of PhpMetrics",
15-
"released": "2019-12-12",
16-
"vcs_tag": "v2.5.0",
15+
"released": "2020-03-28",
16+
"vcs_tag": "v2.6.0",
1717
"attributes": [],
1818
"gpgSign": false
1919
},

artifacts/debian/changelog

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,62 @@
1+
phpmetrics (2.4.1) unstable; urgency=low
2+
* Test on PHP 7.3
3+
* Don't leave notice when array is small
4+
* Add final to class metric
5+
* Update ClassEnumVisitor.php
6+
* Merge pull request #371 from lencse/php73
7+
* Fix issue#380. Typo in Blob report
8+
* Merge pull request #385 from phpmetrics/issue#380
9+
* Added sort package config to composer
10+
* Merge pull request #388 from phpmetrics/sort-packages
11+
* Include codesniffer. Remove alias function and short array syntax (#387)
12+
* Remove superfluous docblocks that are adding no value (#390)
13+
* Skip `self` and `parent` from external dependencies (#1) (#370)
14+
* Trying to fix deprecation of PSR-0 (issue#382) (#384)
15+
* file_exists > is_file (#366)
16+
* Apply PSR-2 codestyle (#389)
17+
* Update phpunit to use highest version possible (#391)
18+
* Merge pull request #375 from gmponos/patch-1
19+
* Merge pull request #372 from lencse/loc-report
20+
* Test against PHP 7.4 (#383)
21+
* releasing
22+
* releasing v2.4.1
23+
* Update contributing.md
24+
* update readme file
25+
* Merge branch 'master' of github.com:phpmetrics/PhpMetrics
26+
* Fixed binary tests
27+
* releasing v2.5.0
28+
* Documented how to release (#392)
29+
* Added editor config file (#393)
30+
* Updated changelog (#394)
31+
* improve docblocks
32+
* Added more codesniffer rules
33+
* Merge pull request #396 from phpmetrics/add-more-phpcs-rules
34+
* Merge pull request #395 from phpmetrics/docblock-improvements
35+
* Way to download report
36+
* Merge pull request #399 from phpmetrics/download_chart
37+
* Exclude doc and artifacts from phar
38+
* Explicitly define the class \Hal\Component\Ast\NodeTraverser to make PhpMetrics work using composer --classmap-authoritative. (#402)
39+
* Merge pull request #400 from phpmetrics/exclude-phar-files
40+
* Resolve PHP7 getters / setters (#405)
41+
* Ensure the packagist license is an array so they can be displayed. (#404)
42+
* Fix warning "Division by zero" when no package is defined. (#401)
43+
* move templates out of src
44+
* Remove folders from phpcs
45+
* Merge pull request #406 from phpmetrics/move-templates-out
46+
* Provide new issue template format.
47+
* Added Slack link (#411)
48+
* Provide configuration option "--maintainability-index-without-comments".
49+
* 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.
50+
* Move new files for carousel inside new template folder after rebasing from master.
51+
* Fix bug with dots in the carousel + add titles on dots for accessibility.
52+
* add metrics description file
53+
* Merge pull request #408 from phpmetrics/new-issue-tpl
54+
* Merge pull request #412 from repzy/metrics-file
55+
* Merge pull request #407 from phpmetrics/issue-325-provide-miwoc
56+
* fix releasing script
57+
58+
-- Jean-François Lépine <[email protected]> Sat, 28 Mar 2020 14:29:40 +0100
59+
160
phpmetrics (2.4.0) unstable; urgency=low
261
* Fix template type
362
* Verify errors in php<7
@@ -675,3 +734,5 @@ phpmetrics (1.8.2) unstable; urgency=low
675734

676735

677736

737+
738+

doc/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ export PATH=~/.composer/vendor/bin:$PATH
1616
## Phar
1717

1818
```bash
19-
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.0/phpmetrics.phar
19+
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.0/phpmetrics.phar
2020
chmod +x phpmetrics.phar && mv phpmetrics.phar /usr/local/bin/phpmetrics
2121
```
2222

2323
## Apt (Debian, Ubuntu...)
2424

2525
```bash
26-
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.0/phpmetrics.deb
26+
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.0/phpmetrics.deb
2727
dpkg -i phpmetrics.deb
2828
```
2929

releases/phpmetrics.phar

96.7 KB
Binary file not shown.

src/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ function recurse_copy($src, $dst)
162162
*/
163163
function getVersion()
164164
{
165-
return 'v2.5.0';
165+
return 'v2.6.0';
166166
}

0 commit comments

Comments
 (0)