2
0
Fork 0
mirror of https://github.com/discourse/wp-discourse.git synced 2025-10-03 08:59:21 +08:00

Bump version to 1.8.9

This commit is contained in:
scossar 2019-04-02 17:20:29 -07:00
parent 08058a721b
commit b16a11515b
2 changed files with 8 additions and 4 deletions

View file

@ -3,7 +3,7 @@ Contributors: scossar, cdck, retlehs, samsaffron, techapj
Tags: discourse, forum, comments, sso
Requires at least: 4.7
Tested up to: 5.1
Stable tag: 1.8.8
Stable tag: 1.8.9
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

@ -127,7 +127,11 @@ To create a coherent top menu, see our tutorial on how to make a [Custom nav hea

**Note:** The wp-discourse plugin requires >=PHP-5.4.0 to be running on your server.

#### 1.8.8 13/19/2019
#### 1.8.9 04/02/2019

- Fix don't cache database call to GET_LOCK when retrieving comments from Discourse

#### 1.8.8 03/19/2019

- Fix don't cache database call to GET_LOCK when publishing posts from WordPress to Discourse


View file

@ -2,7 +2,7 @@
/**
* Plugin Name: WP-Discourse
* Description: Use Discourse as a community engine for your WordPress blog
* Version: 1.8.8
* Version: 1.8.9
* Author: Discourse
* Text Domain: wp-discourse
* Domain Path: /languages
@ -34,7 +34,7 @@ define( 'WPDISCOURSE_PATH', plugin_dir_path( __FILE__ ) );
define( 'WPDISCOURSE_URL', plugins_url( '', __FILE__ ) );
define( 'MIN_WP_VERSION', '4.7' );
define( 'MIN_PHP_VERSION', '5.4.0' );
define( 'WPDISCOURSE_VERSION', '1.8.8' );
define( 'WPDISCOURSE_VERSION', '1.8.9' );

require_once __DIR__ . '/lib/plugin-utilities.php';
require_once __DIR__ . '/lib/template-functions.php';