diff --git a/UPGRADE-0.6.md b/UPGRADE-0.6.md new file mode 100644 index 0000000..e22b2ed --- /dev/null +++ b/UPGRADE-0.6.md @@ -0,0 +1,22 @@ +Upgrade from 0.5 to 0.6 +======================= + +Option +------ + + * Option upchanges have been removed. Any price variations should be set using variations. The `value` property and + corresponding methods have been changed to `index` + + Before: + + ``` + public function setValue($value); + public function getValue(); + ``` + + After: + + ``` + public function setIndex($index); + public function getIndex(); + ```