CHANGELOG.md in crunchbase4-0.1.4 vs CHANGELOG.md in crunchbase4-0.1.5

- old
+ new

@@ -1,16 +1,33 @@ # Change Log +## [0.1.5] - 2020-06-26 + +### Refactoring +- Add more query condition support for card query (limit, order, before_id, after_id) + * Before + - Get organzation's fund: (`client.organization(entity_id, 'fund')`) + * After + - Get organzation's fund: (`client.organization(entity_id, card_id: 'fund')`) +- Method for uniformly obtaining deleted entities data and support more query condition + * Get deleted organzations + - Before: (`client.deleted_organzations`) + - After : (`client.deleted_entities(collection_ids: 'organizations', limit: 20)`) +- Method for uniformly obtaining autocompletes entities data and support more query condition + * Get autocompletes organzations + - Before: (`client.autocomplete_organzations`) + - After : (`client.autocomplete('ekohe', collection_ids: 'organizations', limit: 3)`) + ## [0.1.4] - 2020-06-12 ### Added -- Implemented a API to get the fund data of Entity (`client.fund(entity_id)`) -- Implemented a API to get the ownership data of Entity (`client.ownership(entity_id)`) -- Implemented a API to get the founders data of Entity (`client.founders(entity_id)`) -- Implemented a API to get the event_appearances data of Entity (`client.event_appearances(entity_id)`) -- Implemented a API to get the investors data of Entity (`client.investors(entity_id)`) -- Implemented a API to get the jobs data of Entity (`client.jobs(entity_id)`) -- Implemented a API to get the headquarters_address data of Entity (`client.headquarters_address(entity_id)`) +- Implemented APIs to get the cards data of Entity + - fund: (`client.organization(entity_id, 'fund')`) + - ownership: (`client.organization(entity_id, 'ownership')`) + - founders: (`client.organization(entity_id, 'founders')`) + - investors: (`client.organization(entity_id, 'investors')`) + - jobs: (`client.organization(entity_id, 'jobs')`) + - headquarters_address: (`client.organization(entity_id, 'headquarters_address')`) ## [0.1.3] - 2020-06-09 ### Added - Implemented `deleted_entities` API to allow user get deleted entities by collection_ids