mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2025-12-26 01:29:36 -05:00
updates docker api version to 1.39 and adapts changelog
This commit is contained in:
parent
afff05db7a
commit
c56d60d30f
2 changed files with 3 additions and 3 deletions
|
|
@ -1,12 +1,12 @@
|
|||
## 1.2.0 (Unreleased)
|
||||
|
||||
IMPROVEMENTS
|
||||
* Update to docker `18.09` [GH-114]
|
||||
* Updates to docker `18.09` and API Version `1.39` [GH-114]
|
||||
* Upgrades to go `1.11` ([#116](https://github.com/terraform-providers/terraform-provider-docker/pull/116))
|
||||
* Switches to `go modules` [GH-124]
|
||||
* Adds data source for networks [GH-84]
|
||||
* Adds `ssh` protocol support [GH-153]
|
||||
* Add docker container mounts support ([#147](https://github.com/terraform-providers/terraform-provider-docker/pull/147))
|
||||
* Adds docker container mounts support ([#147](https://github.com/terraform-providers/terraform-provider-docker/pull/147))
|
||||
|
||||
BUG FIXES
|
||||
* Fixes image pulling and local registry connections ([#143](https://github.com/terraform-providers/terraform-provider-docker/pull/143))
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ import (
|
|||
"github.com/docker/docker/client"
|
||||
)
|
||||
|
||||
const apiVersion = "1.37"
|
||||
const apiVersion = "1.39"
|
||||
|
||||
// Config is the structure that stores the configuration to talk to a
|
||||
// Docker API compatible host.
|
||||
|
|
|
|||
Loading…
Reference in a new issue