Skip to content
This repository was archived by the owner on Apr 4, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ wordpress
!/vendor/p3k/emoji-detector/LICENSE
.DS_Store
package-lock.json
composer.lock
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
**Requires at least:** 4.8.2
**Requires PHP:** 5.4
**Tested up to:** 4.9.8
**Stable tag:** 3.9.1
**Stable tag:** 3.9.2
**License:** MIT
**License URI:** http://opensource.org/licenses/MIT

Expand Down Expand Up @@ -86,6 +86,10 @@ The plugin uses a locally cached version of the mystery icon normally provided b

Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.

### 3.9.2 ###
* Only load MF2 parser inside parsing function to ensure bundled version is loaded
* Update development dependencies

### 3.9.1 ###

* Quick fix facepile problem id comments are closed
Expand Down
9 changes: 5 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@
"require": {
"php": ">=5.3.0",
"composer/installers": "~1.0",
"mf2/mf2": "^0.4.3",
"p3k/emoji-detector": "^0.2.0"
"mf2/mf2": "*",
"p3k/emoji-detector": "*"
},
"require-dev": {
"phpunit/phpunit": "5.7.*",
"squizlabs/php_codesniffer": "^2.2 || ^3.0.2",
"wimg/php-compatibility": "*",
"wp-coding-standards/wpcs": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3"
"dealerdirect/phpcodesniffer-composer-installer": "^0.4.3",
"phpcompatibility/php-compatibility": "^9.0",
"phpcompatibility/phpcompatibility-wp": "^2.0"
},
"scripts": {
"install-codestandards": [
Expand Down
Loading