Skip to content
This repository has been archived by the owner on Feb 20, 2021. It is now read-only.

Commit

Permalink
Merge pull request #34 from Shopify/version_bump
Browse files Browse the repository at this point in the history
Version bump to 0.8.0
  • Loading branch information
anthonyn60 authored Aug 2, 2017
2 parents 6f385a1 + 34fc045 commit 69a3a70
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## v0.8.0
**This version has breaking changes**

* Experiments that have `store_unqualified` set to `false` will now have previous assignments loaded on `assign` regardless of whether or not the merchant no longer qualifies
* Here's the change in logic for `assign` based on whether or not the `store_unqualified` flag is on:

Old behaviour:

| store_unqualified | true | false |
|-----------------------------------------------------------------------------|------|-------|
| assignments for subjects that don't qualify are persisted in the database | yes | no |
| existing assignments are returned (even if subject doesn't qualify anymore) | yes | no |

New behaviour:

| store_unqualified | true | false |
|-----------------------------------------------------------------------------|------|-------|
| assignments for subjects that don't qualify are persisted in the database | yes | no |
| existing assignments are returned (even if subject doesn't qualify anymore) | yes | **yes** |

## v0.7.0
**This version has breaking changes**

Expand Down
2 changes: 1 addition & 1 deletion lib/verdict/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Verdict
VERSION = "0.7.0"
VERSION = "0.8.0"
end

0 comments on commit 69a3a70

Please sign in to comment.