Bump API version and docs to v1.19

Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
Alexander Morozov 2015-04-01 13:35:38 -07:00
parent 7101419c1c
commit 81f9b72c64
4 changed files with 2080 additions and 5 deletions

View File

@ -16,7 +16,7 @@ import (
// Common constants for daemon and client.
const (
APIVERSION version.Version = "1.18" // Current REST API version
APIVERSION version.Version = "1.19" // Current REST API version
DEFAULTHTTPHOST = "127.0.0.1" // Default HTTP Host used if only port is provided to -H flag e.g. docker -d -H tcp://:8080
DEFAULTUNIXSOCKET = "/var/run/docker.sock" // Docker daemon by default always listens on the default unix socket
DefaultDockerfileName string = "Dockerfile" // Default filename with Docker commands, read by docker build

View File

@ -139,9 +139,10 @@ pages:
- ['reference/api/hub_registry_spec.md', 'Reference', 'Docker Hub and Registry Spec']
#- ['reference/image-spec-v1.md', 'Reference', 'Docker Image Specification v1.0.0']
- ['reference/api/docker_remote_api.md', 'Reference', 'Docker Remote API']
- ['reference/api/docker_remote_api_v1.19.md', 'Reference', 'Docker Remote API v1.19']
- ['reference/api/docker_remote_api_v1.18.md', 'Reference', 'Docker Remote API v1.18']
- ['reference/api/docker_remote_api_v1.17.md', 'Reference', 'Docker Remote API v1.17']
- ['reference/api/docker_remote_api_v1.16.md', 'Reference', 'Docker Remote API v1.16']
- ['reference/api/docker_remote_api_v1.16.md', '**HIDDEN**']
- ['reference/api/docker_remote_api_v1.15.md', '**HIDDEN**']
- ['reference/api/docker_remote_api_v1.14.md', '**HIDDEN**']
- ['reference/api/docker_remote_api_v1.13.md', '**HIDDEN**']

View File

@ -30,13 +30,22 @@ page_keywords: API, Docker, rcli, REST, documentation
Client applications need to take this into account to ensure
they will not break when talking to newer Docker daemons.
The current version of the API is v1.18
The current version of the API is v1.19
Calling `/info` is the same as calling
`/v1.18/info`.
`/v1.19/info`.
You can still call an old version of the API using
`/v1.17/info`.
`/v1.18/info`.
## v1.19
### Full Documentation
[*Docker Remote API v1.19*](/reference/api/docker_remote_api_v1.19/)
### What's new
## v1.18

File diff suppressed because it is too large Load Diff