File tree Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Expand file tree Collapse file tree 3 files changed +20
-1
lines changed Original file line number Diff line number Diff line change
1
+ 0.1.12
2
+ =======
3
+ :release date: 2011-12-27
4
+
5
+ Bugs fixed
6
+ -------------
7
+
8
+ * Re-enable packs/unpacks removed at 0.1.11. It will be removed when 0.2 is released.
9
+
10
+
1
11
0.1.11
2
12
=======
3
13
:release date: 2011-12-26
Original file line number Diff line number Diff line change 9
9
dump = pack
10
10
dumps = packb
11
11
12
+ def packs (* args , ** kw ):
13
+ from warnings import warn
14
+ warn ("msgpack.packs() is deprecated. Use packb() instead." , DeprecationWarning )
15
+ return packb (* args , ** kw )
16
+
17
+ def unpacks (* args , ** kw ):
18
+ from warnings import warn
19
+ warn ("msgpack.unpacks() is deprecated. Use unpackb() instead." , DeprecationWarning )
20
+ return unpackb (* args , ** kw )
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# coding: utf-8
3
- version = (0 , 1 , 11 )
3
+ version = (0 , 1 , 12 )
4
4
5
5
import os
6
6
import sys
You can’t perform that action at this time.
0 commit comments