Skip to content

Commit

Permalink
releasing v2.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Halleck45 committed Apr 2, 2020
1 parent 42c3a84 commit 88450af
Show file tree
Hide file tree
Showing 6 changed files with 50 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
:major: 2
:minor: 6
:patch: 0
:patch: 1
: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.6.0",
"name": "v2.6.1",
"desc": "Latest version of PhpMetrics",
"released": "2020-03-28",
"vcs_tag": "v2.6.0",
"released": "2020-04-02",
"vcs_tag": "v2.6.1",
"attributes": [],
"gpgSign": false
},
Expand Down
43 changes: 43 additions & 0 deletions artifacts/debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
phpmetrics (2.5.0) unstable; urgency=low
* Documented how to release (#392)
* Added editor config file (#393)
* Updated changelog (#394)
* improve docblocks
* Added more codesniffer rules
* Merge pull request #396 from phpmetrics/add-more-phpcs-rules
* Merge pull request #395 from phpmetrics/docblock-improvements
* Way to download report
* Merge pull request #399 from phpmetrics/download_chart
* Exclude doc and artifacts from phar
* Explicitly define the class \Hal\Component\Ast\NodeTraverser to make PhpMetrics work using composer --classmap-authoritative. (#402)
* Merge pull request #400 from phpmetrics/exclude-phar-files
* Resolve PHP7 getters / setters (#405)
* Ensure the packagist license is an array so they can be displayed. (#404)
* Fix warning "Division by zero" when no package is defined. (#401)
* move templates out of src
* Remove folders from phpcs
* Merge pull request #406 from phpmetrics/move-templates-out
* Provide new issue template format.
* Added Slack link (#411)
* Provide configuration option "--maintainability-index-without-comments".
* Remove command line and always provide metrics MI without comments additionnaly from MI. Add a carousel in the main HTML report page to display both graph at the same time.
* Move new files for carousel inside new template folder after rebasing from master.
* Fix bug with dots in the carousel + add titles on dots for accessibility.
* add metrics description file
* Merge pull request #408 from phpmetrics/new-issue-tpl
* Merge pull request #412 from repzy/metrics-file
* Merge pull request #407 from phpmetrics/issue-325-provide-miwoc
* fix releasing script
* releasing v2.6.0
* Force GPG key for relasing
* Improved page rank report, and UI #416
* Merge pull request #420 from phpmetrics/416_improved_pagerank
* hot fixing phar
* Merge pull request #422 from phpmetrics/hf_phar
* Remove not useful constant
* Merge pull request #423 from phpmetrics/improved_code

-- Jean-François Lépine <lepinejeanfrancois@yahoo.fr> Thu, 02 Apr 2020 21:54:40 +0200

phpmetrics (2.4.1) unstable; urgency=low
* Test on PHP 7.3
* Don't leave notice when array is small
Expand Down Expand Up @@ -736,3 +777,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.6.0/phpmetrics.phar
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.1/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.6.0/phpmetrics.deb
curl https://github.com/phpmetrics/PhpMetrics/releases/download/v2.6.1/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.6.0';
return 'v2.6.1';
}

0 comments on commit 88450af

Please sign in to comment.