diff --git a/CHANGES.rst b/CHANGES.rst index 305a794b..c00541b0 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -12,6 +12,16 @@ Changes .. towncrier release notes start +0.20.0 (2021-07-21) +=================== + +Bugfixes +-------- + +- Accept auth parameter by `run()` method; it allows auto-pulling absent image from private storages. (#295) +- Fix passing of JSON params. (#543) +- Fix issue with unclosed response object in attach/exec. (#604) + 0.19.1 (2020-07-09) =================== diff --git a/CHANGES/295.bugfix b/CHANGES/295.bugfix deleted file mode 100644 index 6869b045..00000000 --- a/CHANGES/295.bugfix +++ /dev/null @@ -1 +0,0 @@ -Accept auth parameter by `run()` method; it allows auto-pulling absent image from private storages. \ No newline at end of file diff --git a/CHANGES/543.bugfix b/CHANGES/543.bugfix deleted file mode 100644 index 0fd0049d..00000000 --- a/CHANGES/543.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix passing of JSON params. diff --git a/CHANGES/604.bugfix b/CHANGES/604.bugfix deleted file mode 100644 index 7950253a..00000000 --- a/CHANGES/604.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix issue with unclosed response object in attach/exec. diff --git a/aiodocker/__init__.py b/aiodocker/__init__.py index 7d1a3b30..4bb07d1f 100644 --- a/aiodocker/__init__.py +++ b/aiodocker/__init__.py @@ -2,7 +2,7 @@ from .exceptions import DockerContainerError, DockerError -__version__ = "0.19.1" +__version__ = "0.20.0" __all__ = ("Docker", "DockerError", "DockerContainerError")