mirror of
https://github.com/docker/compose.git
synced 2025-07-20 12:14:41 +02:00
commit
f6b6cd22df
@ -1,7 +1,7 @@
|
|||||||
Change log
|
Change log
|
||||||
==========
|
==========
|
||||||
|
|
||||||
1.25.0-rc3 (2019-10-28)
|
1.25.0-rc4 (2019-10-28)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
from __future__ import absolute_import
|
from __future__ import absolute_import
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
__version__ = '1.25.0-rc3'
|
__version__ = '1.25.0-rc4'
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
VERSION="1.25.0-rc3"
|
VERSION="1.25.0-rc4"
|
||||||
IMAGE="docker/compose:$VERSION"
|
IMAGE="docker/compose:$VERSION"
|
||||||
|
|
||||||
|
|
||||||
|
@ -880,7 +880,8 @@ class ProjectTest(unittest.TestCase):
|
|||||||
service = 'foo'
|
service = 'foo'
|
||||||
secret_source = 'bar'
|
secret_source = 'bar'
|
||||||
|
|
||||||
_, filename_path = tempfile.mkstemp()
|
fd, filename_path = tempfile.mkstemp()
|
||||||
|
os.close(fd)
|
||||||
self.addCleanup(os.remove, filename_path)
|
self.addCleanup(os.remove, filename_path)
|
||||||
|
|
||||||
def mock_get(key):
|
def mock_get(key):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user