Skip to content

Commit 34a8099

Browse files
committed
Version bump to 1.3.5
1 parent 0011856 commit 34a8099

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Changelog
22
=========
33

4+
v1.3.5 - 2020-09-01
5+
6+
* #59: Optionally include extra stats in get_ticket (@jstitch)
7+
* #60: Add delete company (@aharabedian)
8+
49
v1.3.4 - 2020-07-24
510

611
* Fix versioning issue. No code changes (@sjkingo)

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ It includes the following features from the [Freshdesk v2 API](https://developer
3939
- [Get](http://developer.freshdesk.com/api/#view_company)
4040
- [List](http://developer.freshdesk.com/api/#list_all_companies) (from 1.2.8)
4141
- [Filter](https://developers.freshdesk.com/api/#filter_companies) (from 1.3.2)
42-
- [Delete](https://developers.freshdesk.com/api/#delete_company)
42+
- [Delete](https://developers.freshdesk.com/api/#delete_company) (from 1.3.5)
4343
* [Roles](https://developers.freshdesk.com/api/#roles) (from 1.1.1)
4444
- [Get](http://developer.freshdesk.com/api/#view_role)
4545
- [List](http://developer.freshdesk.com/api/#list_role)
@@ -143,7 +143,7 @@ Or converted from indexes to their descriptions:
143143
'phone'
144144
```
145145

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

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

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

376+
To delete a company (from 1.3.5), call `delete_company()` and pass the Freshdesk company ID.
377+
376378
## Credits
377379

378380
Thank you to all the people who have worked on this library and made it great for everyone.

freshdesk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.3.4"
1+
__version__ = "1.3.5"

0 commit comments

Comments
 (0)