Skip to content

Commit 817106a

Browse files
committedMar 15, 2017
prepare master for the next release
Signed-off-by: Victor Vieux <[email protected]>
1 parent 0b9b790 commit 817106a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed
 

‎VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
17.04.0-dev
1+
17.05.0-dev

‎api/common.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
// Common constants for daemon and client.
2222
const (
2323
// DefaultVersion of Current REST API
24-
DefaultVersion string = "1.28"
24+
DefaultVersion string = "1.29"
2525

2626
// NoBaseImageSpecifier is the symbol used by the FROM
2727
// command to specify that no base image is to be used.

‎api/swagger.yaml

+5-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ produces:
1919
consumes:
2020
- "application/json"
2121
- "text/plain"
22-
basePath: "/v1.28"
22+
basePath: "/v1.29"
2323
info:
2424
title: "Docker Engine API"
25-
version: "1.28"
25+
version: "1.29"
2626
x-logo:
2727
url: "https://docs.docker.com/images/logo-docker-main.png"
2828
description: |
@@ -44,18 +44,19 @@ info:
4444
4545
The API is usually changed in each release of Docker, so API calls are versioned to ensure that clients don't break.
4646
47-
For Docker Engine 17.04, the API version is 1.28. To lock to this version, you prefix the URL with `/v1.28`. For example, calling `/info` is the same as calling `/v1.28/info`.
47+
For Docker Engine 17.05, the API version is 1.29. To lock to this version, you prefix the URL with `/v1.29`. For example, calling `/info` is the same as calling `/v1.29/info`.
4848
4949
Engine releases in the near future should support this version of the API, so your client will continue to work even if it is talking to a newer Engine.
5050
5151
In previous versions of Docker, it was possible to access the API without providing a version. This behaviour is now deprecated will be removed in a future version of Docker.
5252
5353
The API uses an open schema model, which means server may add extra properties to responses. Likewise, the server will ignore any extra query parameters and request body properties. When you write clients, you need to ignore additional properties in responses to ensure they do not break when talking to newer Docker daemons.
5454
55-
This documentation is for version 1.28 of the API, which was introduced with Docker 17.04. Use this table to find documentation for previous versions of the API:
55+
This documentation is for version 1.29 of the API, which was introduced with Docker 17.05. Use this table to find documentation for previous versions of the API:
5656
5757
Docker version | API version | Changes
5858
----------------|-------------|---------
59+
17.04.x | [1.28](https://docs.docker.com/engine/api/v1.28/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-28-api-changes)
5960
17.03.1 | [1.27](https://docs.docker.com/engine/api/v1.27/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-27-api-changes)
6061
1.13.1 & 17.03.0 | [1.26](https://docs.docker.com/engine/api/v1.26/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-26-api-changes)
6162
1.13.0 | [1.25](https://docs.docker.com/engine/api/v1.25/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-25-api-changes)

0 commit comments

Comments
 (0)
Please sign in to comment.