Skip to content

Commit 2456b13

Browse files
committed
releasing v2.5.0
1 parent bfc15d2 commit 2456b13

File tree

7 files changed

+46
-9
lines changed

7 files changed

+46
-9
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Thank you for taking the time to report this bug :+1:
44

55
Run `phpmetrics --version` to get the version of PhpMetrics.
66

7-
**The latest version of PhpMetrics is v2.4.1**. Please try to update PhpMetrics and check if the bug persist before submitting new issue.
7+
**The latest version of PhpMetrics is v2.5.0**. Please try to update PhpMetrics and check if the bug persist before submitting new issue.
88

99
Here is a template for your issue. Please replace the words between braces with the right informations.
1010

.semver

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 2
3-
:minor: 4
4-
:patch: 1
3+
:minor: 5
4+
: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.4.1",
13+
"name": "v2.5.0",
1414
"desc": "Latest version of PhpMetrics",
15-
"released": "2018-07-10",
16-
"vcs_tag": "v2.4.1",
15+
"released": "2019-12-12",
16+
"vcs_tag": "v2.5.0",
1717
"attributes": [],
1818
"gpgSign": false
1919
},

artifacts/debian/changelog

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
phpmetrics (2.4.0) unstable; urgency=low
2+
* Fix template type
3+
* Verify errors in php<7
4+
* Use class_alias to load php5 or php7 code
5+
* Merge pull request #361 from UFOMelkor/hotfix/360-php56
6+
* Retain the old ccn and add wmc as new metric
7+
* Merge pull request #362 from UFOMelkor/hotfix/remain-ccn
8+
* releasing v2.4.1
9+
* Test on PHP 7.3
10+
* Don't leave notice when array is small
11+
* Add final to class metric
12+
* Update ClassEnumVisitor.php
13+
* Merge pull request #371 from lencse/php73
14+
* Fix issue#380. Typo in Blob report
15+
* Merge pull request #385 from phpmetrics/issue#380
16+
* Added sort package config to composer
17+
* Merge pull request #388 from phpmetrics/sort-packages
18+
* Include codesniffer. Remove alias function and short array syntax (#387)
19+
* Remove superfluous docblocks that are adding no value (#390)
20+
* Skip `self` and `parent` from external dependencies (#1) (#370)
21+
* Trying to fix deprecation of PSR-0 (issue#382) (#384)
22+
* file_exists > is_file (#366)
23+
* Apply PSR-2 codestyle (#389)
24+
* Update phpunit to use highest version possible (#391)
25+
* Merge pull request #375 from gmponos/patch-1
26+
* Merge pull request #372 from lencse/loc-report
27+
* Test against PHP 7.4 (#383)
28+
* releasing
29+
* releasing v2.4.1
30+
* Update contributing.md
31+
* update readme file
32+
* Merge branch 'master' of github.com:phpmetrics/PhpMetrics
33+
34+
-- Jean-François Lépine <[email protected]> Thu, 12 Dec 2019 09:01:35 +0100
35+
136
phpmetrics (2.0.0-rc) unstable; urgency=low
237
* way to get infos about unexpected bugs
338
* Don't trigger the issuer on suppressed errors
@@ -638,3 +673,5 @@ phpmetrics (1.8.2) unstable; urgency=low
638673

639674

640675

676+
677+

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.4.1/phpmetrics.phar
19+
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.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.4.1/phpmetrics.deb
26+
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.0/phpmetrics.deb
2727
dpkg -i phpmetrics.deb
2828
```
2929

releases/phpmetrics.phar

0 Bytes
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.4.1';
165+
return 'v2.5.0';
166166
}

0 commit comments

Comments
 (0)