File tree Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Expand file tree Collapse file tree 4 files changed +21
-4
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,23 @@ twilio-python Changelog
3
3
4
4
Here you can see the full list of changes between each twilio-python release.
5
5
6
+ Version 3.6.10
7
+ --------------
8
+
9
+ Released November 13, 2014
10
+
11
+ - Add support for DELETE to Call and Message records
12
+ - Add support for redacting Message body fields
13
+
14
+ Version 3.6.9
15
+ -------------
16
+
17
+ Released October 30, 2014
18
+
19
+ - Add Python 3.4 support
20
+ - Add wheel packaging
21
+ - Fix compatibility with earlier Python 2 releases
22
+
6
23
Version 3.6.8
7
24
-------------
8
25
Original file line number Diff line number Diff line change 1
1
from datetime import date
2
2
from mock import patch , Mock
3
- from nose .tools import raises , assert_true
3
+ from nose .tools import assert_true
4
4
from twilio .rest .resources import Calls , Call
5
5
from tools import create_mock_json
6
6
Original file line number Diff line number Diff line change 1
1
from datetime import date
2
2
import unittest
3
3
4
- from mock import Mock , patch
4
+ from mock import patch
5
5
from six import u
6
6
7
7
from twilio .rest .resources import Messages
@@ -52,7 +52,7 @@ def test_create(self):
52
52
'body' : u ('ahoy hoy' ),
53
53
},
54
54
)
55
-
55
+
56
56
def test_delete (self ):
57
57
with patch .object (self .resource , 'delete_instance' ) as mock :
58
58
self .resource .delete ('MM123' )
Original file line number Diff line number Diff line change 1
- __version_info__ = ('3' , '6' , '9 ' )
1
+ __version_info__ = ('3' , '6' , '10 ' )
2
2
__version__ = '.' .join (__version_info__ )
You can’t perform that action at this time.
0 commit comments