Skip to content

Commit e44f522

Browse files
author
Nicolas Giraud
committed
releasing v2.3.2
1 parent 52053d4 commit e44f522

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
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.3.1.**. Please try to update PhpMetrics and check if the bug persist before submitting new issue.
7+
**The latest version of PhpMetrics is v2.3.2.**. 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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 2
33
:minor: 3
4-
:patch: 1
4+
:patch: 2
55
:special: ''

artifacts/bintray.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"licenses": ["MIT"]
1111
},
1212
"version": {
13-
"name": "v2.3.1",
13+
"name": "v2.3.2",
1414
"desc": "Latest version of PhpMetrics",
1515
"released": "2017-10-13",
16-
"vcs_tag": "v2.3.1",
16+
"vcs_tag": "v2.3.2",
1717
"attributes": [],
1818
"gpgSign": false
1919
},

artifacts/debian/changelog

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
phpmetrics (2.3.0) unstable; urgency=low
2+
* Fix missing escapeshellarg on git command arguments to avoid security and access troubles.
3+
* Fix #317: Only consolidate class metrics that groups Classes and Traits to calculate sums and averages.
4+
* Merge pull request #316 from phpmetrics/fix-315
5+
* Merge pull request #318 from phpmetrics/fix-317
6+
* releasing v2.3.1
7+
* HotFix #317: Bad assignement on item classmetrics.
8+
* Merge pull request #319 from phpmetrics/hotfix-classmetric
9+
10+
-- Jean-François Lépine <[email protected]> Fri, 13 Oct 2017 18:11:18 +0200
11+
112
phpmetrics (2.2.0) unstable; urgency=low
213
* fix: disabled deb artifact
314
* fix: disabled deb artifact in travis
@@ -369,3 +380,5 @@ phpmetrics (1.8.2) unstable; urgency=low
369380

370381

371382

383+
384+

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

releases/phpmetrics.phar

2 Bytes
Binary file not shown.

src/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,5 +166,5 @@ function recurse_copy($src, $dst)
166166
*/
167167
function getVersion()
168168
{
169-
return 'v2.3.1';
169+
return 'v2.3.2';
170170
}

0 commit comments

Comments
 (0)