Skip to content

Commit a46fdbd

Browse files
authored
Merge pull request #78 from getsource/update-dependencies
Update dependencies and release v0.1.2
2 parents dfb2bd6 + ebe7c0f commit a46fdbd

File tree

5 files changed

+41
-9
lines changed

5 files changed

+41
-9
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Start with the latest WordPress image.
2-
FROM wordpress:5.3.2-php7.4
2+
FROM wordpress:5.4.1-php7.4
33

44
# Set up nodejs PPA
55
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash

README.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# PHPUnit Test Reporter #
2-
**Contributors:** octalmage, danielbachhuber, wpamitkumar, mikeschroder, pfefferle
2+
**Contributors:** [octalmage](https://profiles.wordpress.org/octalmage), [danielbachhuber](https://profiles.wordpress.org/danielbachhuber), [wpamitkumar](https://profiles.wordpress.org/wpamitkumar), [mikeschroder](https://profiles.wordpress.org/mikeschroder), [pfefferle](https://profiles.wordpress.org/pfefferle)
33
**Tags:** phpunit
44
**Requires at least:** 4.7
55
**Tested up to:** 5.4.1
6-
**Stable tag:** 0.1.1
6+
**Stable tag:** 0.1.2
77
**License:** GPLv3
88
**License URI:** http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -27,6 +27,14 @@ Usage:
2727
- `make shell`: SSH to Docker test environment.
2828
- `make test`: Runs `php-unit` and `phpcs` in Docker test environment.
2929

30+
There is also a [Grunt](https://gruntjs.com/) command for updating the `README.md` file for Github
31+
after updating `readme.txt`.
32+
33+
Usage:
34+
- `npm install`: Installs necessary dependencies.
35+
- `grunt readme`: Generates `README.md` with
36+
`[grunt-wp-readme-to-markdown](https://github.com/stephenharris/wp-readme-to-markdown)`.
37+
3038
## Changelog ##
3139

3240
### 0.1.0 (August 21st, 2017) ###
@@ -37,3 +45,11 @@ Usage:
3745
* Update local and Travis CI builds.
3846
* Reduce number of revisions in index, while increasing max reporters shown.
3947
* Add contributor documentation.
48+
49+
### 0.1.2 (May 18th, 2020) ###
50+
* Only report result status when tests were actually run. Port of
51+
[meta #7227](https://meta.trac.wordpress.org/changeset/7227) to plugin.
52+
* Upgrade packages for `grunt readme` to Grunt ^1.1.0 and
53+
grunt-wp-readme-to-markdown ^2.0.1, and update plugin version in `package.json`.
54+
* Upgrade Docker environment to use `wordpress:5.4.1-php7.4` image.
55+
* Correct contributor list in `readme.txt` and update `README.md`.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "phpunit-test-reporter",
3-
"version": "0.1.0",
3+
"version": "0.1.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/wordpress/phpunit-test-reporter.git"
77
},
88
"main": "Gruntfile.js",
99
"author": "WordPress Hosting Community <[email protected]>",
1010
"devDependencies": {
11-
"grunt": "^0.4.5",
12-
"grunt-wp-readme-to-markdown": "~1.0.0"
11+
"grunt": "^1.1.0",
12+
"grunt-wp-readme-to-markdown": "^2.0.1"
1313
}
1414
}

phpunit-test-reporter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author URI: https://make.wordpress.org/hosting/
88
* Text Domain: ptr
99
* Domain Path: /languages
10-
* Version: 0.1.1
10+
* Version: 0.1.2
1111
* License: GPL v3
1212
*
1313
* @package PTR

readme.txt

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
=== PHPUnit Test Reporter ===
2-
Contributors: octalmage, danielbachhuber, mikeschroder, pfefferle
2+
Contributors: octalmage, danielbachhuber, wpamitkumar, mikeschroder, pfefferle
33
Tags: phpunit
44
Requires at least: 4.7
55
Tested up to: 5.4.1
6-
Stable tag: 0.1.1
6+
Stable tag: 0.1.2
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -27,6 +27,14 @@ Usage:
2727
- `make shell`: SSH to Docker test environment.
2828
- `make test`: Runs `php-unit` and `phpcs` in Docker test environment.
2929

30+
There is also a [Grunt](https://gruntjs.com/) command for updating the `README.md` file for Github
31+
after updating `readme.txt`.
32+
33+
Usage:
34+
- `npm install`: Installs necessary dependencies.
35+
- `grunt readme`: Generates `README.md` with
36+
`[grunt-wp-readme-to-markdown](https://github.com/stephenharris/wp-readme-to-markdown)`.
37+
3038
== Changelog ==
3139

3240
= 0.1.0 (August 21st, 2017) =
@@ -37,3 +45,11 @@ Usage:
3745
* Update local and Travis CI builds.
3846
* Reduce number of revisions in index, while increasing max reporters shown.
3947
* Add contributor documentation.
48+
49+
= 0.1.2 (May 18th, 2020) =
50+
* Only report result status when tests were actually run. Port of
51+
[meta #7227](https://meta.trac.wordpress.org/changeset/7227) to plugin.
52+
* Upgrade packages for `grunt readme` to Grunt ^1.1.0 and
53+
grunt-wp-readme-to-markdown ^2.0.1, and update plugin version in `package.json`.
54+
* Upgrade Docker environment to use `wordpress:5.4.1-php7.4` image.
55+
* Correct contributor list in `readme.txt` and update `README.md`.

0 commit comments

Comments
 (0)