Skip to content

Commit

Permalink
Preparations for 1.4.2
Browse files Browse the repository at this point in the history
Supported WP version is 4.9, updated WPCS definitions.
  • Loading branch information
stklcode committed Nov 12, 2017
1 parent f061b4c commit 637d5f4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ composer.lock
/node_modules/
/dist/
.idea
tests-clover.xml
tests-junit.xml
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Statify Blacklist #
* Contributors: Stefan Kalscheuer
* Requires at least: 4.4
* Tested up to: 4.8
* Tested up to: 4.9
* Requires PHP: 5.5
* Stable tag: 1.4.1
* License: GPLv2 or later
Expand Down Expand Up @@ -82,6 +82,9 @@ Because of this, an IP blacklist can only be applied while processing the reques

## Changelog ##

### 1.4.2 / unreleased ###
* Minor code fixes

### 1.4.1 / 16.07.2017 ###
* Relicensed to GPLv2 or later
* Fix filter hook if referer is disabled (#9)
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"require-dev": {
"php": ">=5.5",
"phpunit/phpunit": "*",
"wp-coding-standards/wpcs": "~0.11.0"
"phpunit/php-code-coverage": "*",
"wp-coding-standards/wpcs": "~0.14.0"
}
}
9 changes: 9 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,13 @@
<directory suffix="-test.php">./test/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./inc/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="tests-clover.xml"/>
<log type="junit" target="tests-junit.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>

0 comments on commit 637d5f4

Please sign in to comment.