Skip to content

Commit

Permalink
fix the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanstegall committed Dec 18, 2017
1 parent d841ea5 commit 227cedc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

* 1.2 (2017-12-18)
* 1.2.0 (2017-12-18)
* This release provides basic support for additional field types in Salesforce, including: multipicklist, picklist, date, datetime, and URL (results may vary depending on how WordPress plugins handle their custom field equivalents). Thanks to WordPress user @ilanabit for reporting this.
* This release also forces InnoDB on the `field_map` table because MyISAM gets errors on the index length. Hopefully most users are already on InnoDB by default, but this will help any users who are not.

Expand Down
4 changes: 2 additions & 2 deletions object-sync-for-salesforce.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: Object Sync for Salesforce
Description: WordPress plugin that implements mapping and syncing between Salesforce objects and WordPress objects
Version: 1.2
Version: 1.2.0
Author: MinnPost
Author URI: http://code.minnpost.com
License: GPL2+
Expand Down Expand Up @@ -119,7 +119,7 @@ protected function __construct() {
global $wpdb;

$this->wpdb = $wpdb;
$this->version = '1.2';
$this->version = '1.2.0';
$this->login_credentials = $this->get_login_credentials();
$this->slug = 'object-sync-for-salesforce';

Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://www.minnpost.com/support/?campaign=7010G0000012fXGQAY
Tags: salesforce, sync, crm
Requires at least: 4.5
Tested up to: 4.9
Stable tag: 1.1.2
Stable tag: 1.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -125,7 +125,7 @@ There is extensive documentation of the plugin, including its developer hooks, [

== Changelog ==

* 1.2 (2017-12-18)
* 1.2.0 (2017-12-18)
* This release provides basic support for additional field types in Salesforce, including: multipicklist, picklist, date, datetime, and URL (results may vary depending on how WordPress plugins handle their custom field equivalents). Thanks to WordPress user @ilanabit for reporting this.
* This release also forces InnoDB on the `field_map` table because MyISAM gets errors on the index length. Hopefully most users are already on InnoDB by default, but this will help any users who are not.

Expand Down

0 comments on commit 227cedc

Please sign in to comment.