Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.05 KB

HISTORY.md

File metadata and controls

37 lines (24 loc) · 1.05 KB

0.0.5 (2014-01-24)

  • Fixed pagination bugs raised by @dlains - thank you.
  • Account.description is not a required field
  • Added Employee & Vendor Entity support via PR #23 & #21, thank you @minimul
  • Updates to CustomerMemo and PrivateNote in SalesReceipt, via PR #22, thank you @seanxiesx

0.0.4 (2014-01-15)

  • Added CompanyInfo model/service - thank you Sean Xie

0.0.3 (2014-01-04)

  • All reference types, e.g. Account#parent_ref are implemented via a first-class BaseReference instance. Note: This is a backwards-incompatible change and any existing usages of setting a reference type directly, e.g.
account = Quickbooks::Model::Account.new
account.parent_ref = 2

The above will fail. The correct usage is now:

account = Quickbooks::Model::Account.new
account.parent_id = 2

The _id= setter will automatically create an instance of the appropriate ParentRef in this case.

0.0.2 (2013-11-18)

  • Sorry, I forgot what was in this release.

0.0.1 (2013-11-15)

  • Initial Release