Skip to content

Commit 3a5d042

Browse files
0.6 release
1 parent a4c8302 commit 3a5d042

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

CHANGELOG

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,20 @@
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

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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

294299
Thanks to GetResponse for their support
295300

docs/conf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@
4141

4242
# General information about the project.
4343
project = 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.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

4040
setup(
4141
name="mysql-replication",

0 commit comments

Comments
 (0)