Browse code

Bump API version to 1.34

Docker 17.10 was cut off from ab2b03a0e139537376bbf66c1e1e9e897a403f06

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2017/09/30 08:08:56
Showing 3 changed files
... ...
@@ -3,7 +3,7 @@ package api
3 3
 // Common constants for daemon and client.
4 4
 const (
5 5
 	// DefaultVersion of Current REST API
6
-	DefaultVersion string = "1.33"
6
+	DefaultVersion string = "1.34"
7 7
 
8 8
 	// NoBaseImageSpecifier is the symbol used by the FROM
9 9
 	// command to specify that no base image is to be used.
... ...
@@ -19,10 +19,10 @@ produces:
19 19
 consumes:
20 20
   - "application/json"
21 21
   - "text/plain"
22
-basePath: "/v1.33"
22
+basePath: "/v1.34"
23 23
 info:
24 24
   title: "Docker Engine API"
25
-  version: "1.33"
25
+  version: "1.34"
26 26
   x-logo:
27 27
     url: "https://docs.docker.com/images/logo-docker-main.png"
28 28
   description: |
... ...
@@ -44,7 +44,7 @@ info:
44 44
 
45 45
     The API is usually changed in each release of Docker, so API calls are versioned to ensure that clients don't break.
46 46
 
47
-    For Docker Engine 17.09, the API version is 1.32. To lock to this version, you prefix the URL with `/v1.32`. For example, calling `/info` is the same as calling `/v1.32/info`.
47
+    For Docker Engine 17.10, the API version is 1.33. To lock to this version, you prefix the URL with `/v1.33`. For example, calling `/info` is the same as calling `/v1.33/info`.
48 48
 
49 49
     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.
50 50
 
... ...
@@ -52,11 +52,12 @@ info:
52 52
 
53 53
     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.
54 54
 
55
-    This documentation is for version 1.33 of the API. Use this table to find documentation for previous versions of the API:
55
+    This documentation is for version 1.34 of the API. Use this table to find documentation for previous versions of the API:
56 56
 
57 57
     Docker version  | API version | Changes
58 58
     ----------------|-------------|---------
59
-    17.09.x | [1.31](https://docs.docker.com/engine/api/v1.32/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-32-api-changes)
59
+    17.10.x | [1.33](https://docs.docker.com/engine/api/v1.33/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-33-api-changes)
60
+    17.09.x | [1.32](https://docs.docker.com/engine/api/v1.32/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-32-api-changes)
60 61
     17.07.x | [1.31](https://docs.docker.com/engine/api/v1.31/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-31-api-changes)
61 62
     17.06.x | [1.30](https://docs.docker.com/engine/api/v1.30/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-30-api-changes)
62 63
     17.05.x | [1.29](https://docs.docker.com/engine/api/v1.29/) | [API changes](https://docs.docker.com/engine/api/version-history/#v1-29-api-changes)
... ...
@@ -13,6 +13,9 @@ keywords: "API, Docker, rcli, REST, documentation"
13 13
      will be rejected.
14 14
 -->
15 15
 
16
+## v1.34 API changes
17
+
18
+[Docker Engine API v1.34](https://docs.docker.com/engine/api/v1.34/) documentation
16 19
 
17 20
 ## v1.33 API changes
18 21