File tree Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Expand file tree Collapse file tree 4 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 33
33
* Remove default server id
34
34
* Performances improvements
35
35
* Allow filter events by schema and tables
36
+
37
+ 0.6 10/05/2015
38
+ * Prevent invalid table-map-entries to crash the whole app
39
+ * Add support for Stop Event, update tests
40
+ * Fix the order of binlog events, though we don't support them yet
41
+ * Simplified RowsEvent.rows to be @property instead of __getattr__ hack
42
+ * add binlog row minimal and noblob image support
43
+ * remove six not being used.
44
+ * misc code style improvements, mainly pep8
45
+ * Update event.py to be compatible with python2.6.7
46
+ * explicitly break reference cycle when closing binlogstreamreader
47
+ * break reference loop using weakref to prevent memory-leaking
48
+ * Freeze schema.
49
+ * Freeze table schema
50
+ * Avoid named parameters passed to packet because it's slower
51
+ * Filter table and schema event
52
+ * PyPy support
Original file line number Diff line number Diff line change @@ -290,6 +290,11 @@ Other contributors:
290
290
* Bernardo Sulzbach code cleanup https://github.com/mafagafo
291
291
* Darioush Jalali Python 2.6 backport https://github.com/darioush
292
292
* Arthur Gautier gtid https://github.com/baloo
293
+ * Jasonz bug fixes https://github.com/jasonzzz
294
+ * Bartek Ogryczak cleanup https://github.com/vartec
295
+ * Wang, Xiaozhe cleanup https://github.com/chaoslawful
296
+ * siddontang improvements https://github.com/siddontang
297
+ * Cheng Chen Python 2.6 compatibility https://github.com/cccc1999
293
298
294
299
Thanks to GetResponse for their support
295
300
Original file line number Diff line number Diff line change 41
41
42
42
# General information about the project.
43
43
project = u'Python MySQL Replication'
44
- copyright = u'2012-2014 , Julien Duponchelle'
44
+ copyright = u'2012-2015 , Julien Duponchelle'
45
45
46
46
# The version info for the project you're documenting, acts as replacement for
47
47
# |version| and |release|, also used in various other places throughout the
48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = '0.5 '
51
+ version = '0.6 '
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '0.5 '
53
+ release = '0.6 '
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 @@ -35,7 +35,7 @@ def run(self):
35
35
unittest .main (tests , argv = sys .argv [:1 ])
36
36
37
37
38
- version = "0.5 "
38
+ version = "0.6 "
39
39
40
40
setup (
41
41
name = "mysql-replication" ,
You can’t perform that action at this time.
0 commit comments