8000 Bump version to 6.0.0 · chunkingz/twilio-python@590cd25 · GitHub
[go: up one dir, main page]

Skip to content

Commit 590cd25

Browse files
committed
Bump version to 6.0.0
1 parent 7b56015 commit 590cd25

File tree

3 files changed

+12
-85
lines changed

3 files changed

+12
-85
lines changed

CHANGES.md

Lines changed: 7 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -3,63 +3,16 @@ twilio-python Changelog
33

44
Here you can see the full list of changes between each twilio-python release.
55

6-
Version 6.0rc13
7-
--------------
8-
9-
Released March 07, 2017:
10-
11-
- Support regional Twilio hostnames.
12-
- Improve `rtype` documentation throughout.
13-
- Remove obsolete Sandbox resource.
14-
- Improve TwiML helper resources.
15-
- Support date inequality parameters by expanding into before, equal, after parameters in python.
16-
- Reorganize common modules into `base` folder.
17-
- Add TaskRouter grant.
18-
- Document handwritten classes.
19-
- Switch to using `requests` library over `httplib2`.
20-
- Fix docs generation.
21-
- Support client validation.
22-
23-
Version 6.0rc8
24-
-------------
25-
26-
Released July 8, 2016:
27-
28-
- Add SMS and Facebook Messenger for Notify
29-
30-
Version 6.0rc7
31-
-------------
32-
33-
Released June 9, 2016:
6+
[2017-04-03] Version 6.0.0
7+
--------------------------
8+
**New Major Version**
349

35-
- Add messaging feedback preview
36-
37-
Version 6.0rc5
38-
-------------
39-
40-
Released May 27, 2016:
41-
42-
- Add wireless preview
43-
44-
Version 6.0rc4
45-
-------------
46-
47-
Released March 29, 2016:
48-
49-
- Add notifications.twilio.com subdomain
50-
51-
Version 6.0.0
52-
-------------
10+
The newest version of the `twilio-python` helper library!
5311

54-
Released January 29, 2016:
12+
This version brings a host of changes to update and modernize the `twilio-python` helper library. It is auto-generated to produce a more consistent and correct product.
5513

56-
- First class paging support
57-
- Streaming auto-paging functionality
58-
- Separation between strict paging and streaming, with network-efficient defaults
59-
- Fully configurable and swappable HTTP Client interfaces
60-
- Normalization of mounts -> endpoints relations, with first-class unified support for subdomains and multi-version support
61-
- Fixed URL pathing of subresources, preventing edge case errors with path building via mounting
62-
- Proper serialization/deserialization of types (integers, dates, etc.)
14+
- [Full API Documentation](https://twilio.github.io/twilio-python/)
15+
- [General Documentation](https://www.twilio.com/docs/libraries/python)
6316

6417
Version 4.4.0
6518
-------------

README.md

Lines changed: 4 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,14 @@
66

77
A module for using the Twilio REST API and generating valid
88
[TwiML](http://www.twilio.com/docs/api/twiml/ "TwiML -
9-
Twilio Markup Language"). [Click here to read the full
10-
documentation.][documentation]
9+
Twilio Markup Language").
1110

1211
## Installation
1312

1413
Install from PyPi using [pip](http://www.pip-installer.org/en/latest/), a
1514
package manager for Python.
1615

17-
pip install twilio==6.0.0rc13
16+
pip install twilio
1817

1918
Don't have pip installed? Try installing it, by running this from the command
2019
line:
@@ -35,9 +34,6 @@ You may need to run the above commands with `sudo`.
3534
## Feedback
3635
Report any feedback or problems with this Release Candidate to the [Github Issues](https://github.com/twilio/twilio-python/issues) for twilio-python.
3736

38-
## Documentation
39-
[Here][documentation]
40-
4137
## Getting Started
4238

4339
Getting started with the Twilio API couldn't be easier. Create a
@@ -105,9 +101,9 @@ To control phone calls, your application needs to output
105101
Language"). Use `twilio.twiml.Response` to easily create such responses.
106102

107103
```python
108-
from twilio import twiml
104+
from twilio.twilio.voice_response import VoiceResponse
109105

110-
r = twiml.Response()
106+
r = VoiceResponse()
111107
r.say("Welcome to twilio!")
112108
print(str(r))
113109
```
@@ -116,25 +112,3 @@ print(str(r))
116112
<?xml version="1.0" encoding="utf-8"?>
117113
<Response><Say>Welcome to twilio!</Say></Response>
118114
```
119-
120-
### Digging Deeper
121-
122-
The full power of the Twilio API is at your fingertips. The [full
123-
documentation][documentation] explains all the awesome features available to
124-
use.
125-
126-
* [Retrieve Call Records][calls]
127-
* [Retrieve Message Records][messages]
128-
* [Search for a Phone Number][number]
129-
* [Buy a Number][number]
130-
* [Validate a Phone Number][validate]
131-
* [List Recordings][recordings]
132-
133-
[number]: http://twilio-python.readthedocs.org/en/latest/usage/phone-numbers.html#searching-and-buying-a-number
134-
[validate]: http://twilio-python.readthedocs.org/en/latest/usage/caller-ids.html
135-
[recordings]: http://twilio-python.readthedocs.org/en/latest/usage/recordings.html#listing-your-recordings
136-
[messages]: http://twilio-python.readthedocs.org/en/latest/usage/messages.html#retrieving-sent-messages
137-
[calls]: http://twilio-python.readthedocs.org/en/latest/usage/phone-calls.html#retrieve-a-call-record
138-
[issues]: https://github.com/twilio/twilio-python/issues
139-
[documentation]: http://twilio-python.readthedocs.org/en/release-6x/
140-
[upgrade]: https://github.com/twilio/twilio-python/wiki/Python-Version-6.x-Upgrade-Guide

twilio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11

2-
__version_info__ = ('6', '0', '0rc13')
2+
__version_info__ = ('6', '0', '0')
33
__version__ = '.'.join(__version_info__)

0 commit comments

Comments
 (0)
0