Skip to content

Commit

Permalink
stamp v2.0.0.alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
the4thdoctor committed Nov 18, 2017
1 parent f84aea5 commit 6ed8158
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
changelog
*************************
2.0-alpha2 XX November 2017
2.0.0.alpha2 18 November 2017
.............................
* Fix wrong position when determining the destination schema in read_replica_stream
* Fix wrong log position stored in the source's high watermark
Expand All @@ -23,7 +23,7 @@ changelog
* add separate logs for per source
* change log line formatting inspired by the super clean look in pgbackrest (thanks you guys)

2.0-alpha1 11 November 2017
2.0.0.alpha1 11 November 2017
.............................

* Python 3 only development
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Setup
* Create a virtual environment (e.g. python3 -m venv venv)
* Activate the virtual environment (e.g. source venv/bin/activate)
* Upgrade pip with **pip install pip --upgrade**
* Install pg_chameleon with **pip install pg_chameleon==2.0a1.post1**.
* Install pg_chameleon with **pip install pg_chameleon==2.0.0a2**.
* Create a user on mysql for the replica (e.g. usr_replica)
* Grant access to usr on the replicated database (e.g. GRANT ALL ON sakila.* TO 'usr_replica';)
* Grant RELOAD privilege to the user (e.g. GRANT RELOAD ON \*.\* to 'usr_replica';)
Expand Down
4 changes: 2 additions & 2 deletions RELEASE_NOTES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
RELEASE NOTES
*************************
2.0-alpha2
2.0.0.alpha2
--------------------------
**please note this is a not production release. do not use it in production**

Expand All @@ -26,7 +26,7 @@ This class will add a very basic support for the postgres source type.
More details will come in the alpha3.


2.0-alpha1
2.0.0.alpha1
--------------------------
**please note this is a not production release. do not use it in production**

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.0'
version = u'2.0.0'
# The full version, including alpha/beta/rc tags.
release = u'v2.0alpha2'
release = u'v2.0.0.alpha2'

# The language for content autgenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Install pg_chameleon
.. code-block:: none
pip install pip --upgrade
pip install pg_chameleon==2.0a2
pip install pg_chameleon==2.0.0a2
Run the ``set_configuration_files`` command in order to create the configuration directory.
Expand Down
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

setup(
name="pg_chameleon",
version="v2.0-alpha1",
version="2.0.0.a2",
description="MySQL to PostgreSQL replica and migration",
long_description=""" pg_chameleon is a tool for replicating from MySQL to PostgreSQL compatible with Python 2.7 and Python 3.3+.
The system use the library mysql-replication to pull the row images from MySQL which are transformed into a jsonb object.
Expand Down Expand Up @@ -95,6 +95,8 @@
'rollbar>=0.13.17'
],
data_files = data_files,
include_package_data = True
include_package_data = True,
python_requires='>=3.3',
keywords='postgresql mysql replica migration database',

)

0 comments on commit 6ed8158

Please sign in to comment.