Skip to content

Commit

Permalink
releasing v2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Halleck45 committed Dec 12, 2019
1 parent bfc15d2 commit 2456b13
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Thank you for taking the time to report this bug :+1:

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 2
:minor: 4
:patch: 1
:minor: 5
:patch: 0
:special: ''
6 changes: 3 additions & 3 deletions artifacts/bintray.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"licenses": ["MIT"]
},
"version": {
"name": "v2.4.1",
"name": "v2.5.0",
"desc": "Latest version of PhpMetrics",
"released": "2018-07-10",
"vcs_tag": "v2.4.1",
"released": "2019-12-12",
"vcs_tag": "v2.5.0",
"attributes": [],
"gpgSign": false
},
Expand Down
37 changes: 37 additions & 0 deletions artifacts/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
phpmetrics (2.4.0) unstable; urgency=low
* Fix template type
* Verify errors in php<7
* Use class_alias to load php5 or php7 code
* Merge pull request #361 from UFOMelkor/hotfix/360-php56
* Retain the old ccn and add wmc as new metric
* Merge pull request #362 from UFOMelkor/hotfix/remain-ccn
* releasing v2.4.1
* Test on PHP 7.3
* Don't leave notice when array is small
* Add final to class metric
* Update ClassEnumVisitor.php
* Merge pull request #371 from lencse/php73
* Fix issue#380. Typo in Blob report
* Merge pull request #385 from phpmetrics/issue#380
* Added sort package config to composer
* Merge pull request #388 from phpmetrics/sort-packages
* Include codesniffer. Remove alias function and short array syntax (#387)
* Remove superfluous docblocks that are adding no value (#390)
* Skip `self` and `parent` from external dependencies (#1) (#370)
* Trying to fix deprecation of PSR-0 (issue#382) (#384)
* file_exists > is_file (#366)
* Apply PSR-2 codestyle (#389)
* Update phpunit to use highest version possible (#391)
* Merge pull request #375 from gmponos/patch-1
* Merge pull request #372 from lencse/loc-report
* Test against PHP 7.4 (#383)
* releasing
* releasing v2.4.1
* Update contributing.md
* update readme file
* Merge branch 'master' of github.com:phpmetrics/PhpMetrics

-- Jean-François Lépine <lepinejeanfrancois@yahoo.fr> Thu, 12 Dec 2019 09:01:35 +0100

phpmetrics (2.0.0-rc) unstable; urgency=low
* way to get infos about unexpected bugs
* Don't trigger the issuer on suppressed errors
Expand Down Expand Up @@ -638,3 +673,5 @@ phpmetrics (1.8.2) unstable; urgency=low





4 changes: 2 additions & 2 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ export PATH=~/.composer/vendor/bin:$PATH
## Phar

```bash
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.4.1/phpmetrics.phar
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.0/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.4.1/phpmetrics.deb
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.5.0/phpmetrics.deb
dpkg -i phpmetrics.deb
```

Expand Down
Binary file modified releases/phpmetrics.phar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -162,5 +162,5 @@ function recurse_copy($src, $dst)
*/
function getVersion()
{
return 'v2.4.1';
return 'v2.5.0';
}

0 comments on commit 2456b13

Please sign in to comment.