diff --git a/CHANGELOG.md b/CHANGELOG.md index 46b25f6..bd1e4c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.0.1] - 2018-8-16 +### Changed +- Fixed Job Configuration options + ## [1.0.0] - 2018-4-19 ### Added - Added nullable/required field modes. diff --git a/src/Big.php b/src/Big.php index 1373f1f..f60ca35 100644 --- a/src/Big.php +++ b/src/Big.php @@ -72,7 +72,7 @@ public function run($query, $options = null) // Set default options if nothing is passed in $options = $options ?? $this->options; - $queryResults = $this->query->runQuery($this->query->query($query), $options); + $queryResults = $this->query->runQuery($this->query->query($query, $options)); // Setup our result checks $isComplete = $queryResults->isComplete();