Skip to content

Commit

Permalink
version 1.3.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
efedasz committed Apr 11, 2018
1 parent 082a262 commit 56fdeba
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
## CHANGELOG

### v1.3.2 (2018-04-11)

**Features and Improvements**
* Support for resources: Deal Unqualified Reason, Lead Unqualified Reason

### v1.3.1 (2017-12-22)

**Features and Improvements**
* Fixed issue where could not update deal without passing value

### v1.3.0 (2017-08-28)

**Features and Improvements**
Expand Down Expand Up @@ -47,7 +52,7 @@

**Features and Improvements**

* `\BaseCRM\HttpClient` methods accept additional `$options`
* `\BaseCRM\HttpClient` methods accept additional `$options`
* Sync API support
* New low-level`\BaseCRM\SyncService`
* High-level `\BaseCRM\Sync` wrapper
Expand Down
16 changes: 8 additions & 8 deletions lib/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@

class Configuration
{
// @version 1.3.1 Current stable version.
const VERSION = "1.3.1";
// @version 1.3.2 Current stable version.
const VERSION = "1.3.2";

const PRODUCTION_URL = "https://api.getbase.com";
const URL_REGEXP = "/\b(?:(?:https?|http):\/\/|www\.)[-a-z0-9+&@#\/%?=~_|!:,.;]*[-a-z0-9+&@#\/%=~_|]/i";
Expand All @@ -14,16 +14,16 @@ class Configuration

// @var string Base url for the api.
public $baseUrl;

// @var string Client user agent.
public $userAgent;

// @var integer Request timeout.
public $timeout;

// @var boolean Whether to verify ssl or not.
public $verifySSL;

// @var boolean Verbose/debug mode.
public $verbose;

Expand Down Expand Up @@ -75,7 +75,7 @@ public function isValid()
. 'as it contains disallowed characters. '
. 'Please double-check your access token.';
throw new Errors\ConfigurationError($msg);
}
}

if (strlen($this->accessToken) != 64)
{
Expand Down Expand Up @@ -105,6 +105,6 @@ protected function _accessTokenIsMissing()
$msg = 'No access token provided. '
. 'Set your access token during client initialization using: '
. '"new \\BaseCRM\\Client([\'accessToken\' => \'<YOUR_PERSONAL_ACCCESS_TOKEN\'])"';
return $msg;
return $msg;
}
}

0 comments on commit 56fdeba

Please sign in to comment.