diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 164bcb9d..0a084815 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,11 @@ changelog ************************* +2.0.1 XX January 2018 +............................................ +* Fix for issue #58. Improve the read replica performance by filtering the row images when ``limit_tables/skip_tables`` are set. +* Make the ``read_replica_stream`` method private. + + 2.0.0 01 January 2018 ............................................ * Add option ``--rollbar-level`` to set the maximum level for the messages to be sent to rollbar. Accepted values: "critical", "error", "warning", "info". The Default is "info". diff --git a/LICENSE.txt b/LICENSE.txt index c799ff38..6c5225e5 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,4 +1,4 @@ -Copyright (c) 2016,2017,2018 Federico Campoli +Copyright (c) 2016-2018 Federico Campoli All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.rst b/README.rst index a6c666f6..73995bf2 100644 --- a/README.rst +++ b/README.rst @@ -13,7 +13,7 @@ .. image:: https://api.travis-ci.org/the4thdoctor/pg_chameleon.svg?branch=ver2.0 :target: https://travis-ci.org/the4thdoctor/pg_chameleon -pg_chameleon v2.0.0 `is available on pypi `_ +pg_chameleon v2.0.1 `is available on pypi `_ Please report any issue at `https://github.com/the4thdoctor/pg_chameleon/issues `_ diff --git a/RELEASE_NOTES.rst b/RELEASE_NOTES.rst index 09f404f5..fceca1bd 100644 --- a/RELEASE_NOTES.rst +++ b/RELEASE_NOTES.rst @@ -1,5 +1,8 @@ RELEASE NOTES ************************* +2.0.1 +-------------------------- + 2.0.0 -------------------------- This stable release consists of the same code of the RC1 with few usability improvements. diff --git a/docs/conf.py b/docs/conf.py index 32c91dcb..9f8b8da7 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -57,7 +57,7 @@ # General information about the project. project = u'pg_chameleon' -copyright = u'2016,2017,2018 Federico Campoli' +copyright = u'2016-2018 Federico Campoli' author = u'Federico Campoli' # The version info for the project you're documenting, acts as replacement for @@ -65,9 +65,9 @@ # built documents. # # The short X.Y version. -version = u'2.0.0' +version = u'2.0.1' # The full version, including alpha/beta/rc tags. -release = u'v2.0.0' +release = u'v2.0.1' # The language for content autgenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 798764c0..8283219d 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name="pg_chameleon", - version="2.0.0", + version="2.0.1", description="MySQL to PostgreSQL replica and migration", long_description=""" pg_chameleon is a tool for replicating from MySQL to PostgreSQL compatible with Python 3.3+. The system use the library mysql-replication to pull the row images from MySQL which are transformed into a jsonb object.