Skip to content

Commit

Permalink
in preparation for new release, update: version numbers, changelog, n…
Browse files Browse the repository at this point in the history
…pm libraries, auto generated docs, and run gulp
  • Loading branch information
jonathanstegall committed Oct 3, 2017
1 parent 8445937 commit aee6a8d
Show file tree
Hide file tree
Showing 11 changed files with 4,134 additions and 3,987 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

* 1.0.9 (2017-10-03)

* This fixes a bug in which upserting a custom post type would incorrectly create a standard post, rather than the desired custom post object.

* 1.0.8 (2017-08-14)

* This checks a mapping's configured allowed sync triggers before queueing a record for pull processing, rather than as a part of the WordPress record's create or update. This resolves an issue. Thanks to GitHub user @charmoney for the report and the pull request.
Expand Down
50 changes: 25 additions & 25 deletions docs/code/class-Object_Sync_Sf_Wordpress.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/code/class-WordpressException.html
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ <h1>Class WordpressException</h1>



<b>Located at</b> <a href="source-class-WordpressException.html#2363-2367" title="Go to source code">wordpress.php</a>
<b>Located at</b> <a href="source-class-WordpressException.html#2357-2361" title="Go to source code">wordpress.php</a>
<br>
</div>

Expand Down
4 changes: 2 additions & 2 deletions docs/code/source-class-Object_Sync_Salesforce.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ <h3>Exceptions</h3>
</span><span id="2" class="l"><a href="#2"> 2: </a><span class="php-comment">/*
</span></span><span id="3" class="l"><a href="#3"> 3: </a><span class="php-comment">Plugin Name: Object Sync for Salesforce
</span></span><span id="4" class="l"><a href="#4"> 4: </a><span class="php-comment">Description: WordPress plugin that implements mapping and syncing between Salesforce objects and WordPress objects
</span></span><span id="5" class="l"><a href="#5"> 5: </a><span class="php-comment">Version: 1.0.8
</span></span><span id="5" class="l"><a href="#5"> 5: </a><span class="php-comment">Version: 1.0.9
</span></span><span id="6" class="l"><a href="#6"> 6: </a><span class="php-comment">Author: MinnPost
</span></span><span id="7" class="l"><a href="#7"> 7: </a><span class="php-comment">Author URI: http://code.minnpost.com
</span></span><span id="8" class="l"><a href="#8"> 8: </a><span class="php-comment">License: GPL2+
Expand Down Expand Up @@ -203,7 +203,7 @@ <h3>Exceptions</h3>
</span><span id="119" class="l"><a href="#119">119: </a> <span class="php-keyword1">global</span> <span class="php-var">$wpdb</span>;
</span><span id="120" class="l"><a href="#120">120: </a>
</span><span id="121" class="l"><a href="#121">121: </a> <span class="php-var">$this</span>-&gt;wpdb = <span class="php-var">$wpdb</span>;
</span><span id="122" class="l"><a href="#122">122: </a> <span class="php-var">$this</span>-&gt;version = <span class="php-quote">'1.0.8'</span>;
</span><span id="122" class="l"><a href="#122">122: </a> <span class="php-var">$this</span>-&gt;version = <span class="php-quote">'1.0.9'</span>;
</span><span id="123" class="l"><a href="#123">123: </a> <span class="php-var">$this</span>-&gt;login_credentials = <span class="php-var">$this</span>-&gt;get_login_credentials();
</span><span id="124" class="l"><a href="#124">124: </a> <span class="php-var">$this</span>-&gt;slug = <span class="php-quote">'object-sync-for-salesforce'</span>;
</span><span id="125" class="l"><a href="#125">125: </a>
Expand Down
3,626 changes: 1,810 additions & 1,816 deletions docs/code/source-class-Object_Sync_Sf_Wordpress.html

Large diffs are not rendered by default.

3,626 changes: 1,810 additions & 1,816 deletions docs/code/source-class-WordpressException.html

Large diffs are not rendered by default.

274 changes: 137 additions & 137 deletions languages/object-sync-for-salesforce.pot

Large diffs are not rendered by default.

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.0.8
Version: 1.0.9
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.0.8';
$this->version = '1.0.9';
$this->login_credentials = $this->get_login_credentials();
$this->slug = 'object-sync-for-salesforce';

Expand Down
Loading

0 comments on commit aee6a8d

Please sign in to comment.