Skip to content

Commit

Permalink
Bump version to 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jingming committed Apr 3, 2017
1 parent 7b56015 commit 590cd25
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 85 deletions.
61 changes: 7 additions & 54 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,63 +3,16 @@ twilio-python Changelog

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

Version 6.0rc13
--------------

Released March 07, 2017:

- Support regional Twilio hostnames.
- Improve `rtype` documentation throughout.
- Remove obsolete Sandbox resource.
- Improve TwiML helper resources.
- Support date inequality parameters by expanding into before, equal, after parameters in python.
- Reorganize common modules into `base` folder.
- Add TaskRouter grant.
- Document handwritten classes.
- Switch to using `requests` library over `httplib2`.
- Fix docs generation.
- Support client validation.

Version 6.0rc8
-------------

Released July 8, 2016:

- Add SMS and Facebook Messenger for Notify

Version 6.0rc7
-------------

Released June 9, 2016:
[2017-04-03] Version 6.0.0
--------------------------
**New Major Version**

- Add messaging feedback preview

Version 6.0rc5
-------------

Released May 27, 2016:

- Add wireless preview

Version 6.0rc4
-------------

Released March 29, 2016:

- Add notifications.twilio.com subdomain

Version 6.0.0
-------------
The newest version of the `twilio-python` helper library!

Released January 29, 2016:
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.

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

Version 4.4.0
-------------
Expand Down
34 changes: 4 additions & 30 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,14 @@

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

## Installation

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

pip install twilio==6.0.0rc13
pip install twilio

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

## Documentation
[Here][documentation]

## Getting Started

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

```python
from twilio import twiml
from twilio.twilio.voice_response import VoiceResponse

r = twiml.Response()
r = VoiceResponse()
r.say("Welcome to twilio!")
print(str(r))
```
Expand All @@ -116,25 +112,3 @@ print(str(r))
<?xml version="1.0" encoding="utf-8"?>
<Response><Say>Welcome to twilio!</Say></Response>
```

### Digging Deeper

The full power of the Twilio API is at your fingertips. The [full
documentation][documentation] explains all the awesome features available to
use.

* [Retrieve Call Records][calls]
* [Retrieve Message Records][messages]
* [Search for a Phone Number][number]
* [Buy a Number][number]
* [Validate a Phone Number][validate]
* [List Recordings][recordings]

[number]: http://twilio-python.readthedocs.org/en/latest/usage/phone-numbers.html#searching-and-buying-a-number
[validate]: http://twilio-python.readthedocs.org/en/latest/usage/caller-ids.html
[recordings]: http://twilio-python.readthedocs.org/en/latest/usage/recordings.html#listing-your-recordings
[messages]: http://twilio-python.readthedocs.org/en/latest/usage/messages.html#retrieving-sent-messages
[calls]: http://twilio-python.readthedocs.org/en/latest/usage/phone-calls.html#retrieve-a-call-record
[issues]: https://github.com/twilio/twilio-python/issues
[documentation]: http://twilio-python.readthedocs.org/en/release-6x/
[upgrade]: https://github.com/twilio/twilio-python/wiki/Python-Version-6.x-Upgrade-Guide
2 changes: 1 addition & 1 deletion twilio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

__version_info__ = ('6', '0', '0rc13')
__version_info__ = ('6', '0', '0')
__version__ = '.'.join(__version_info__)

0 comments on commit 590cd25

Please sign in to comment.