Skip to content

Commit

Permalink
releasing v2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolas Giraud committed Sep 22, 2017
1 parent ddebbad commit c6fc9a5
Show file tree
Hide file tree
Showing 7 changed files with 95 additions and 8 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.0.0.**. Please try to update PhpMetrics and check if the bug persist before submitting new issue.
**The latest version of PhpMetrics is v2.3.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
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 2
:minor: 2
:minor: 3
: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.2.0",
"name": "v2.3.0",
"desc": "Latest version of PhpMetrics",
"released": "2017-04-12",
"vcs_tag": "v2.2.0",
"released": "2017-09-22",
"vcs_tag": "v2.3.0",
"attributes": [],
"gpgSign": false
},
Expand Down
87 changes: 87 additions & 0 deletions artifacts/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,88 @@
phpmetrics (2.1.0) unstable; urgency=low
* added calculation for max cyclomatic complexity for method in class
* fixed typos (whitespaces) in readme
* released v2.1.0
* Merge pull request #272 from kazimierasbutkus/master
* Fix version number.
* Merge pull request #275 from mageekguy/patch-1
* fixes #276 issue whith OutputInterface
* added Composer analysis
* fixed warning with undeclared variable
* minimal support of mobile in HTML report
* fixed issue with composer report : only one composer.json was considered
* simplified and splitted documentation
* fixed typos in README with blank spaces
* fixed link of image in documentation
* added link to spdx license in composer report
* fixed responsive typos
* documentation about releasing
* releasing v2.2.0
* Fix twitter link
* Adjust PHPDoc types
* Fix name resolving of anonymous classes
* Allow // in text without counting it as comment
* Fixed typo in description
* Update style.css
* updated pmd priority levels
* Added changelog
* typo fix
* added links to changelog
* changed markdown to match keep-a-changelog
* added links to footer
* Change heading for LOC graph.
* add preg_quote around dir
* Merge pull request #278 from UFOMelkor/typo/twitter-link
* Merge pull request #281 from UFOMelkor/hotfix/280
* Merge pull request #282 from UFOMelkor/hotfix/273
* Merge pull request #285 from j92/fix_typo
* Merge pull request #287 from rafaelign/master
* Merge pull request #290 from bangpound/patch-1
* Merge pull request #293 from paolomainardi/feature/fix-preg-quoting
* Fix for #280 (anonymous classes support for PHP 7.1)
* Added a newline to the end of a test file
* Merge pull request #299 from FractalizeR-Forks/fix-anonymous-classes-in-php-7.1
* fix: disabled deb artifact
* fix: disabled deb artifact in travis
* way to know parents
* way to get information about depth and childs of node in a tree
* way to get average height of branches in graph
* way to know the Depth of inheritance tree
* way to get the list of metrics
* added CSV report
* added json report
* fixed style
* added the key --report-json to validator
* Merge pull request #301 from phpmetrics/feature/reports
* Adding support for configuration files to read settings from
* Add installed package column when composer.lock file is found.
* Preventing duplicate edges from appearing in a graph using Deduplicated graph class. Fixes #291.
* Add export-ignore option to reduce the archive size of composer downloading.
* Add dockerfile in project to use the latest phar.
* Merge pull request #303 from FractalizeR-Forks/configuration-file-support
* Merge pull request #305 from phpmetrics/fix-284
* Merge pull request #306 from phpmetrics/ignore-export-composer-installation
* Merge pull request #304 from FractalizeR-Forks/avoid_duplicate_edges_in_graph
* Add Traits in parsing through all visitors.
* Fix #286: Missing files in the phar build due to bad regexp filter.
* Fix bad preg_quote usage that fails the regexp and so, fails the Finder.
* Merge pull request #310 from phpmetrics/fix-286
* Add unit tests to check the bugfix about finder.
* Merge pull request #311 from phpmetrics/fix-bad-regexp-finder
* Merge pull request #307 from phpmetrics/fix-244
* Merge pull request #279 from UFOMelkor/docs/phpdoc
* Embed dependent files so generated reports can be used offline
* Fix bad output in the junit report.
* Dropped the changelog
* Merge pull request #312 from phpmetrics/fix-263
* Merge pull request #309 from phpmetrics/fix-308
* Merge pull request #302 from dennisdegreef/localFilesOnly
* Merge pull request #288 from krukru/pmd-priority-rewrite
* Fix makefiles about releasing a new version.
* Fix bad carridge return when displaying the version.
* Merge pull request #313 from phpmetrics/fix-release

-- Jean-François Lépine <[email protected]> Fri, 22 Sep 2017 11:32:45 +0200

phpmetrics (1.9.2) unstable; urgency=low
* Removed unneeded code
* Removed unneeded code
Expand Down Expand Up @@ -206,3 +291,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.1.0/phpmetrics.phar
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.3.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.1.0/phpmetrics.deb
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.3.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 @@ -166,5 +166,5 @@ function recurse_copy($src, $dst)
*/
function getVersion()
{
return 'v2.2.0';
return 'v2.3.0';
}

0 comments on commit c6fc9a5

Please sign in to comment.