Skip to content

Commit

Permalink
Merge branch 'release/3.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Apr 23, 2015
2 parents 36bc7f7 + bb8ddeb commit 2b6c1ba
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

packages=find_packages(exclude=['contrib', 'docs', 'tests*', 'sql']),

install_requires=['docopt'],
install_requires=['docopt', 'requests'],

# extras_require = {
# 'dev': ['check-manifest'],
Expand Down
2 changes: 1 addition & 1 deletion xtrabackup/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
__summary__ = "Percona Xtrabackup python wrapper"
__uri__ = "https://github.com/deviantony/xtrabackup-scripts"

__version__ = "3.1.0"
__version__ = "3.1.1"

__author__ = "Anthony Lapenna"
__email__ = "[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion xtrabackup/full_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@


def main():
arguments = docopt(__doc__, version='3.1.0')
arguments = docopt(__doc__, version='3.1.1')
backup_tool = BackupTool(arguments['--log-file'], arguments['--out-file'],
arguments['--no-compress'])
try:
Expand Down
2 changes: 1 addition & 1 deletion xtrabackup/incremental_backup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@


def main():
arguments = docopt(__doc__, version='3.0.1')
arguments = docopt(__doc__, version='3.1.1')
backup_tool = BackupTool(arguments['--log-file'], arguments['--out-file'],
arguments['--no-compress'])
try:
Expand Down
2 changes: 1 addition & 1 deletion xtrabackup/restoration.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@


def main():
arguments = docopt(__doc__, version='3.1.0')
arguments = docopt(__doc__, version='3.1.1')
restore_tool = RestorationTool(arguments['--log-file'],
arguments['--out-file'],
arguments['--data-dir'],
Expand Down

0 comments on commit 2b6c1ba

Please sign in to comment.