Skip to content

Commit 1860cc9

Browse files
0.9
1 parent bd77c48 commit 1860cc9

File tree

3 files changed

+19
-4
lines changed

3 files changed

+19
-4
lines changed

CHANGELOG

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
* Adding support for skipping the binlog until reaching specified timestamp.
5858
* Add support for BeginLoadQueryEvent and ExecuteLoadQueryEvent
5959

60-
08 02/01/2016
60+
0.8 02/01/2016
6161

6262
* bugfix for decoding values of columns in charset "utf8mb4"
6363
* Close connection on EOF packet
@@ -68,3 +68,18 @@
6868
* Explicit close stream connection on exception, to prevent sockets from sitting in CLOSE_WAIT status with PyPy
6969
* Further (micro)optimization: Moving popular column types to top of if/elif, so they can shortcircuit earlier.
7070
* Making Column attribiutes into regular object attributes instead of a dictionary. This makes getting the attribute about 20 times faster.
71+
72+
0.9 20/05/2016
73+
74+
* Allow to specify a pymysql wrapper or subclass
75+
* setup travis to run test on multiple mysql version (5.6 and 5.7)
76+
* test run with mysql5.7
77+
* report-slave: Allow reporting of port if username not supplied
78+
* gtid: fixup parsing on mysql format
79+
* added intvar event
80+
* binlogstream: improve slave report
81+
* Support for slave_uuid
82+
* Report slave in SHOW SLAVE HOSTS
83+
* fix: missing update _next_seq_no
84+
* PyMYSQL 0.7
85+
* Add more contributors

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.8'
51+
version = '0.9'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.8'
53+
release = '0.9'
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
@@ -34,7 +34,7 @@ def run(self):
3434
unittest.main(tests, argv=sys.argv[:1])
3535

3636

37-
version = "0.8"
37+
version = "0.9"
3838

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

0 commit comments

Comments
 (0)