Skip to content

Commit

Permalink
Merge pull request #24 from twindb/fix-description
Browse files Browse the repository at this point in the history
fix description
  • Loading branch information
akuzminsky authored Sep 13, 2020
2 parents 5927039 + bbbbd54 commit 3c9a25d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ vagrant-provision:

.PHONY: bootstrap
bootstrap: ## bootstrap the development environment
pip install -U "pip ~= 20.2"
pip install -U "setuptools ~= 50.0"
pip install -r requirements.txt -r requirements_dev.txt
pip install --editable .
Expand Down
2 changes: 0 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,6 @@ and shows what records are difference if there are any inconsistencies.
* Blogpost with usage examples: https://twindb.com/pt-table-checksum-show-differences/


.. include:: docs/README.rst


Credits
-------
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.0.1
current_version = 3.0.2
commit = True
tag = False

Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@

setup(
name="twindb_table_compare",
version="3.0.1",
version="3.0.2",
description=(
"TwinDB Table Compare reads percona.checksums from the master and slave "
"and shows what records are difference if there are any inconsistencies."
),
long_description=readme + "\n\n" + history,
long_description_content_type="text/x-rst",
author="Aleksandr Kuzminsky",
author_email="[email protected]",
url="https://github.com/twindb/twindb-table-compare",
Expand Down
2 changes: 1 addition & 1 deletion twindb_table_compare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

__author__ = "Aleksandr Kuzminsky"
__email__ = "[email protected]"
__version__ = "3.0.1"
__version__ = "3.0.2"

LOG = logging.getLogger(__name__)

Expand Down

0 comments on commit 3c9a25d

Please sign in to comment.