Skip to content

Commit

Permalink
releasing v2.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Giraud committed Oct 13, 2017
1 parent 52053d4 commit e44f522
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 7 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.3.1.**. Please try to update PhpMetrics and check if the bug persist before submitting new issue.
**The latest version of PhpMetrics is v2.3.2.**. 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
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 2
:minor: 3
:patch: 1
:patch: 2
:special: ''
4 changes: 2 additions & 2 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.3.1",
"name": "v2.3.2",
"desc": "Latest version of PhpMetrics",
"released": "2017-10-13",
"vcs_tag": "v2.3.1",
"vcs_tag": "v2.3.2",
"attributes": [],
"gpgSign": false
},
Expand Down
13 changes: 13 additions & 0 deletions artifacts/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
phpmetrics (2.3.0) unstable; urgency=low
* Fix missing escapeshellarg on git command arguments to avoid security and access troubles.
* Fix #317: Only consolidate class metrics that groups Classes and Traits to calculate sums and averages.
* Merge pull request #316 from phpmetrics/fix-315
* Merge pull request #318 from phpmetrics/fix-317
* releasing v2.3.1
* HotFix #317: Bad assignement on item classmetrics.
* Merge pull request #319 from phpmetrics/hotfix-classmetric

-- Jean-François Lépine <lepinejeanfrancois@yahoo.fr> Fri, 13 Oct 2017 18:11:18 +0200

phpmetrics (2.2.0) unstable; urgency=low
* fix: disabled deb artifact
* fix: disabled deb artifact in travis
Expand Down Expand Up @@ -369,3 +380,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.3.1/phpmetrics.phar
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.3.2/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.3.1/phpmetrics.deb
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.3.2/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 @@ -166,5 +166,5 @@ function recurse_copy($src, $dst)
*/
function getVersion()
{
return 'v2.3.1';
return 'v2.3.2';
}

0 comments on commit e44f522

Please sign in to comment.