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 3333* Remove default server id
3434* Performances improvements
3535* 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:
290290* Bernardo Sulzbach code cleanup https://github.com/mafagafo
291291* Darioush Jalali Python 2.6 backport https://github.com/darioush
292292* 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
293298
294299Thanks to GetResponse for their support
295300
Original file line number Diff line number Diff line change 4141
4242# General information about the project.
4343project = u'Python MySQL Replication'
44- copyright = u'2012-2014 , Julien Duponchelle'
44+ copyright = u'2012-2015 , Julien Duponchelle'
4545
4646# The version info for the project you're documenting, acts as replacement for
4747# |version| and |release|, also used in various other places throughout the
4848# built documents.
4949#
5050# The short X.Y version.
51- version = '0.5 '
51+ version = '0.6 '
5252# The full version, including alpha/beta/rc tags.
53- release = '0.5 '
53+ release = '0.6 '
5454
5555# The language for content autogenerated by Sphinx. Refer to documentation
5656# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def run(self):
3535 unittest .main (tests , argv = sys .argv [:1 ])
3636
3737
38- version = "0.5 "
38+ version = "0.6 "
3939
4040setup (
4141 name = "mysql-replication" ,
You can’t perform that action at this time.
0 commit comments