Bump version for release.
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Dan Helfman 2020-04-24 15:56:56 -07:00
parent dce1928dc4
commit e4eff0e3dc
3 changed files with 5 additions and 3 deletions

4
NEWS
View File

@ -1,5 +1,7 @@
1.5.2.dev0
1.5.2
* #301: Fix MySQL restore error on "all" database dump by excluding system tables.
* Fix PostgreSQL restore error on "all" database dump by using "psql" for the restore instead of
"pg_restore".
1.5.1
* #289: Tired of looking up the latest successful archive name in order to pass it to borgmatic

View File

@ -1,6 +1,6 @@
from setuptools import find_packages, setup
VERSION = '1.5.2.dev0'
VERSION = '1.5.2'
setup(

View File

@ -310,7 +310,7 @@ def test_restore_database_dumps_runs_pg_restore_with_username_and_password():
module.restore_database_dumps(databases, 'test.yaml', {}, dry_run=False)
def test_restore_all_database_dump():
def test_restore_database_dumps_runs_psql_for_all_database_dump():
databases = [{'name': 'all'}]
flexmock(module).should_receive('make_dump_path').and_return('')
flexmock(module.dump).should_receive('make_database_dump_filename').and_return(