Skip to content

Commit

Permalink
Version bump to 1.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkingo committed Aug 31, 2020
1 parent 0011856 commit 34a8099
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

v1.3.5 - 2020-09-01

* #59: Optionally include extra stats in get_ticket (@jstitch)
* #60: Add delete company (@aharabedian)

v1.3.4 - 2020-07-24

* Fix versioning issue. No code changes (@sjkingo)
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ It includes the following features from the [Freshdesk v2 API](https://developer
- [Get](http://developer.freshdesk.com/api/#view_company)
- [List](http://developer.freshdesk.com/api/#list_all_companies) (from 1.2.8)
- [Filter](https://developers.freshdesk.com/api/#filter_companies) (from 1.3.2)
- [Delete](https://developers.freshdesk.com/api/#delete_company)
- [Delete](https://developers.freshdesk.com/api/#delete_company) (from 1.3.5)
* [Roles](https://developers.freshdesk.com/api/#roles) (from 1.1.1)
- [Get](http://developer.freshdesk.com/api/#view_role)
- [List](http://developer.freshdesk.com/api/#list_role)
Expand Down Expand Up @@ -143,7 +143,7 @@ Or converted from indexes to their descriptions:
'phone'
```

You can get additional details of the ticket in the response using extra arguments.
You can get additional details of the ticket in the response using extra arguments (from 1.3.5).

Please take a look at the FreshDesk documentation for more details: [View a Ticket](http://developer.freshdesk.com/api/#view_a_ticket)

Expand Down Expand Up @@ -373,6 +373,8 @@ To get a company, use:
a.companies.filter_companies(query="updated_at:>'2020-07-12'")
```

To delete a company (from 1.3.5), call `delete_company()` and pass the Freshdesk company ID.

## Credits

Thank you to all the people who have worked on this library and made it great for everyone.
2 changes: 1 addition & 1 deletion freshdesk/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.4"
__version__ = "1.3.5"

0 comments on commit 34a8099

Please sign in to comment.