Skip to content

Commit 88450af

Browse files
committed
releasing v2.6.1
1 parent 42c3a84 commit 88450af

File tree

6 files changed

+50
-7
lines changed

6 files changed

+50
-7
lines changed

.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: 6
4-
:patch: 0
4+
:patch: 1
55
:special: ''

artifacts/bintray.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
"licenses": ["MIT"]
1111
},
1212
"version": {
13-
"name": "v2.6.0",
13+
"name": "v2.6.1",
1414
"desc": "Latest version of PhpMetrics",
15-
"released": "2020-03-28",
16-
"vcs_tag": "v2.6.0",
15+
"released": "2020-04-02",
16+
"vcs_tag": "v2.6.1",
1717
"attributes": [],
1818
"gpgSign": false
1919
},

artifacts/debian/changelog

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
phpmetrics (2.5.0) unstable; urgency=low
2+
* Documented how to release (#392)
3+
* Added editor config file (#393)
4+
* Updated changelog (#394)
5+
* improve docblocks
6+
* Added more codesniffer rules
7+
* Merge pull request #396 from phpmetrics/add-more-phpcs-rules
8+
* Merge pull request #395 from phpmetrics/docblock-improvements
9+
* Way to download report
10+
* Merge pull request #399 from phpmetrics/download_chart
11+
* Exclude doc and artifacts from phar
12+
* Explicitly define the class \Hal\Component\Ast\NodeTraverser to make PhpMetrics work using composer --classmap-authoritative. (#402)
13+
* Merge pull request #400 from phpmetrics/exclude-phar-files
14+
* Resolve PHP7 getters / setters (#405)
15+
* Ensure the packagist license is an array so they can be displayed. (#404)
16+
* Fix warning "Division by zero" when no package is defined. (#401)
17+
* move templates out of src
18+
* Remove folders from phpcs
19+
* Merge pull request #406 from phpmetrics/move-templates-out
20+
* Provide new issue template format.
21+
* Added Slack link (#411)
22+
* Provide configuration option "--maintainability-index-without-comments".
23+
* 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.
24+
* Move new files for carousel inside new template folder after rebasing from master.
25+
* Fix bug with dots in the carousel + add titles on dots for accessibility.
26+
* add metrics description file
27+
* Merge pull request #408 from phpmetrics/new-issue-tpl
28+
* Merge pull request #412 from repzy/metrics-file
29+
* Merge pull request #407 from phpmetrics/issue-325-provide-miwoc
30+
* fix releasing script
31+
* releasing v2.6.0
32+
* Force GPG key for relasing
33+
* Improved page rank report, and UI #416
34+
* Merge pull request #420 from phpmetrics/416_improved_pagerank
35+
* hot fixing phar
36+
* Merge pull request #422 from phpmetrics/hf_phar
37+
* Remove not useful constant
38+
* Merge pull request #423 from phpmetrics/improved_code
39+
40+
-- Jean-François Lépine <[email protected]> Thu, 02 Apr 2020 21:54:40 +0200
41+
142
phpmetrics (2.4.1) unstable; urgency=low
243
* Test on PHP 7.3
344
* Don't leave notice when array is small
@@ -736,3 +777,5 @@ phpmetrics (1.8.2) unstable; urgency=low
736777

737778

738779

780+
781+

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

releases/phpmetrics.phar

37 Bytes
Binary file not shown.

src/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,5 +162,5 @@ function recurse_copy($src, $dst)
162162
*/
163163
function getVersion()
164164
{
165-
return 'v2.6.0';
165+
return 'v2.6.1';
166166
}

0 commit comments

Comments
 (0)