From 0109dd2b0b3f8c25e40acae75baeb883e1357a75 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Tue, 9 Oct 2018 12:58:22 -0600 Subject: [PATCH 1/3] Version bump --- distributor.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distributor.php b/distributor.php index 723ab862d..2b398fc16 100644 --- a/distributor.php +++ b/distributor.php @@ -2,7 +2,7 @@ /** * Plugin Name: Distributor * Description: Makes it easy to syndicate and reuse content across your websites, whether inside of a multisite or across the web. - * Version: 1.3.0 + * Version: 1.3.1 * Author: 10up Inc. * Author URI: https://distributorplugin.com * License: GPLv2 or later @@ -17,7 +17,7 @@ exit; // Exit if accessed directly. } -define( 'DT_VERSION', '1.3.0-dev' ); +define( 'DT_VERSION', '1.3.1-dev' ); define( 'DT_PLUGIN_FILE', preg_replace( '#^.*plugins/(.*)$#i', '$1', __FILE__ ) ); // Define a constant if we're network activated to allow plugin to respond accordingly. From 816ed1aee05e6d8d6ec3a9a8f3dc0ecd10065d20 Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Tue, 9 Oct 2018 14:29:06 -0600 Subject: [PATCH 2/3] Changelog updates for 1.3.1 --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a87a1318..68eb1adf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ All notable changes to this project will be documented in this file, per [the Keep a Changelog standard](http://keepachangelog.com/). +## [ 1.3.1 ] - 2018-10-09 +### Fixed +* Retain keys for associative array meta. +* Properly pass CPT slugs to external connections. +* Don't push updates to network sites that no longer exist. +* Escaping improvements. +* Stable build now only contains files necessary for production. + + ## [ 1.3.0 ] - 2018-09-20 ### Added * Add a media processing option to only distribute the featured image instead of the featured image and all attached media. From 8e3698d981331b215ef757f10ab658768b6bd17b Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Tue, 9 Oct 2018 15:10:26 -0600 Subject: [PATCH 3/3] Check for plugin updates from releases, not stable branch --- distributor.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/distributor.php b/distributor.php index 2b398fc16..88524bf41 100644 --- a/distributor.php +++ b/distributor.php @@ -130,8 +130,6 @@ function( $response ) { __FILE__, 'distributor' ); - - $updateChecker->setBranch( 'stable' ); // @codingStandardsIgnoreEnd } }