diff --git a/README.md b/README.md index aebf3ac..22cfffd 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,15 @@ This plugin add two new type of sources for your facets, Posts to Posts (P2P) co ## Changelog +### 3.0.2 (Oct 5, 2021) + +* Fix missing P2P connexion when rebuilding index from FacetWP settings page. + +### 3.0.1 (Apr 8, 2021) + +* Fix wrong site ID use when indexing connection +* Fix FacetWP Indexer index method expect integer + ### 3.0.0 (Sep 1, 2020) * New filter `facetp2p_p2p_connexions` : Change available connexions for FacetWP P2P diff --git a/facetwp-p2p.php b/facetwp-p2p.php index 266fc38..e90a302 100644 --- a/facetwp-p2p.php +++ b/facetwp-p2p.php @@ -3,7 +3,7 @@ Plugin Name: FacetWP - Posts 2 Posts Plugin URI: https://github.com/petitphp/facetwp-p2p Description: Add a P2P connexion facet for the plugin FacetWP -Version: 3.0.0 +Version: 3.0.2 Author: Clément Boirie Author URI: https://github.com/petitphp License: GPL2+ @@ -14,7 +14,7 @@ die( '-1' ); } -define( 'FWP_P2P_VER', '3.0.0' ); +define( 'FWP_P2P_VER', '3.0.2' ); define( 'FWP_P2P_URL', plugin_dir_url( __FILE__ ) ); define( 'FWP_P2P_DIR', plugin_dir_path( __FILE__ ) );