Skip to content

Commit

Permalink
Merge pull request #11 from Lymelight/hotfix/move-job-configuration-o…
Browse files Browse the repository at this point in the history
…ptions

Hotfix/move job configuration options
  • Loading branch information
Medalink authored Aug 16, 2018
2 parents d1d3fc1 + 187747c commit 1767ae4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion src/Big.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 1767ae4

Please sign in to comment.