Merge pull request #6987 from docker/bump-1.25.0-rc4

Bump 1.25.0-rc4
This commit is contained in:
Djordje Lukic 2019-10-28 16:54:32 +01:00 committed by GitHub
commit f6b6cd22df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Change log
==========
1.25.0-rc3 (2019-10-28)
1.25.0-rc4 (2019-10-28)
-------------------
### Features

View File

@ -1,4 +1,4 @@
from __future__ import absolute_import
from __future__ import unicode_literals
__version__ = '1.25.0-rc3'
__version__ = '1.25.0-rc4'

View File

@ -15,7 +15,7 @@
set -e
VERSION="1.25.0-rc3"
VERSION="1.25.0-rc4"
IMAGE="docker/compose:$VERSION"

View File

@ -880,7 +880,8 @@ class ProjectTest(unittest.TestCase):
service = 'foo'
secret_source = 'bar'
_, filename_path = tempfile.mkstemp()
fd, filename_path = tempfile.mkstemp()
os.close(fd)
self.addCleanup(os.remove, filename_path)
def mock_get(key):