File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 56
56
* Skipping GTID tests on DBs not set up to support GTID
57
57
* Adding support for skipping the binlog until reaching specified timestamp.
58
58
* Add support for BeginLoadQueryEvent and ExecuteLoadQueryEvent
59
+
60
+ 08 02/01/2016
61
+
62
+ * bugfix for decoding values of columns in charset "utf8mb4"
63
+ * Close connection on EOF packet
64
+ * Don't fail on incomplete dates (with 0 as day or month), such as 2015-00-21 or 2015-05-00
65
+ * Fix GtidSet __str__ representation
66
+ * Fix typo in TableMapEvent comment
67
+ * gtid failed parsing: raise with value
68
+ * Explicit close stream connection on exception, to prevent sockets from sitting in CLOSE_WAIT status with PyPy
69
+ * Further (micro)optimization: Moving popular column types to top of if/elif, so they can shortcircuit earlier.
70
+ * Making Column attribiutes into regular object attributes instead of a dictionary. This makes getting the attribute about 20 times faster.
Original file line number Diff line number Diff line change 48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = '0.7 '
51
+ version = '0.8 '
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '0.7 '
53
+ release = '0.8 '
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ def run(self):
34
34
unittest .main (tests , argv = sys .argv [:1 ])
35
35
36
36
37
- version = "0.7 "
37
+ version = "0.8 "
38
38
39
39
setup (
40
40
name = "mysql-replication" ,
You can’t perform that action at this time.
0 commit comments