mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
commit
f6b6cd22df
@ -1,7 +1,7 @@
|
||||
Change log
|
||||
==========
|
||||
|
||||
1.25.0-rc3 (2019-10-28)
|
||||
1.25.0-rc4 (2019-10-28)
|
||||
-------------------
|
||||
|
||||
### Features
|
||||
|
@ -1,4 +1,4 @@
|
||||
from __future__ import absolute_import
|
||||
from __future__ import unicode_literals
|
||||
|
||||
__version__ = '1.25.0-rc3'
|
||||
__version__ = '1.25.0-rc4'
|
||||
|
@ -15,7 +15,7 @@
|
||||
|
||||
set -e
|
||||
|
||||
VERSION="1.25.0-rc3"
|
||||
VERSION="1.25.0-rc4"
|
||||
IMAGE="docker/compose:$VERSION"
|
||||
|
||||
|
||||
|
@ -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):
|
||||
|
Loading…
x
Reference in New Issue
Block a user