Skip to content

Commit

Permalink
Bump version 3.2.9
Browse files Browse the repository at this point in the history
  • Loading branch information
HughbertD committed May 4, 2022
1 parent 43227bb commit c52b1da
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# GatherContent Plugin -- Version 3.2.8 #
# GatherContent Plugin -- Version 3.2.9 #

This plugin allows you to transfer content from your GatherContent projects into your WordPress site and vice-versa.

Expand Down Expand Up @@ -47,6 +47,10 @@ Below the text box is a button that will allow you to simply save all of that in

## Changelog ##

### 3.2.9 ###
* Added support for Bynder images, which do not include an extension in their filenames by default.
* Importing files from attachment fields in GatherContent, will now be done using the result of the content endpoint for the item, and will no longer call the files endpoint.

### 3.2.8 ###
* Pulling will no longer happen using wp_remote_post as it was causing issues with local environments and firewalls, where leaving the server and re-calling it via the host wasn't possible.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "gathercontent/wp-importer",
"description": "Imports items from GatherContent to your wordpress site",
"version": "3.2.8",
"version": "3.2.9",
"type": "wordpress-plugin",
"keywords": [],
"homepage": "http://www.gathercontent.com",
Expand Down
6 changes: 3 additions & 3 deletions gathercontent-importer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: GatherContent Plugin
* Plugin URI: http://www.gathercontent.com
* Description: Imports items from GatherContent to your wordpress site
* Version: 3.2.7
* Version: 3.2.9
* Author: GatherContent
* Requires PHP: 7.0
* Author URI: http://www.gathercontent.com
Expand Down Expand Up @@ -31,8 +31,8 @@
*/

// Useful global constants
define( 'GATHERCONTENT_VERSION', '3.2.8' );
define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.8' );
define( 'GATHERCONTENT_VERSION', '3.2.9' );
define( 'GATHERCONTENT_ENQUEUE_VERSION', '3.2.9' );
define( 'GATHERCONTENT_SLUG', 'gathercontent-import' );
define( 'GATHERCONTENT_PLUGIN', __FILE__ );
define( 'GATHERCONTENT_URL', plugin_dir_url( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "gathercontent-importer",
"title": "GatherContent Plugin",
"description": "Imports items from GatherContent to your wordpress site",
"version": "3.2.8",
"version": "3.2.9",
"license": "GPLv2",
"homepage": "http://www.gathercontent.com",
"repository": {
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: http://www.gathercontent.com
Tags structured content, gather content, gathercontent, import, migrate, export, mapping, production, writing, collaboration, platform, connect, link, gather, client, word, production
Requires at least: 5.6.0
Tested up to: 5.9.0
Stable tag: 3.2.8
Stable tag: 3.2.9
License: GPL-2.0+
Requires PHP: 7.0
License URI: https://opensource.org/licenses/GPL-2.0
Expand Down Expand Up @@ -65,6 +65,10 @@ Below the text box is a button that will allow you to simply save all of that in

== Changelog ==

= 3.2.9 =
* Added support for Bynder images, which do not include an extension in their filenames by default.
* Importing files from attachment fields in GatherContent, will now be done using the result of the content endpoint for the item, and will no longer call the files endpoint.

= 3.2.8 =
* Pulling will no longer happen using wp_remote_post as it was causing issues with local environments and firewalls, where leaving the server and re-calling it via the host wasn't possible.

Expand Down
8 changes: 4 additions & 4 deletions vendor/composer/installed.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php return array(
'root' => array(
'pretty_version' => '3.2.8',
'version' => '3.2.8.0',
'pretty_version' => '3.2.9',
'version' => '3.2.9.0',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand All @@ -11,8 +11,8 @@
),
'versions' => array(
'gathercontent/wp-importer' => array(
'pretty_version' => '3.2.8',
'version' => '3.2.8.0',
'pretty_version' => '3.2.9',
'version' => '3.2.9.0',
'type' => 'wordpress-plugin',
'install_path' => __DIR__ . '/../../',
'aliases' => array(),
Expand Down

0 comments on commit c52b1da

Please sign in to comment.