Skip to content

Commit 78747ae

Browse files
committed
api: bump API version to v1.1.2
Signed-off-by: akshitguptaa <akshitguptaa29@gmail.com>
1 parent 0a515ec commit 78747ae

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pkg/api/api.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "net"
55
const (
66
// Version of the REST API, not implementation version.
77
// See openapi.yaml for the definition.
8-
Version = "1.1.1"
8+
Version = "1.1.2"
99
)
1010

1111
// Info is the structure returned by `GET /info`
@@ -24,7 +24,7 @@ type NetworkDriverInfo struct {
2424
DNS []net.IP `json:"dns,omitempty"`
2525
ChildIP net.IP `json:"childIP,omitempty"` // since API v1.1.1 (RootlessKit v0.14.1)
2626
DynamicChildIP bool `json:"dynamicChildIP,omitempty"` // since API v1.1.1
27-
IPv6 bool `json:"ipv6,omitempty"` // since API v1.1.1
27+
IPv6 bool `json:"ipv6,omitempty"` // since API v1.1.2
2828
}
2929

3030
// PortDriverInfo in Info

pkg/api/openapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# When you made a change to this YAML, please validate with https://editor.swagger.io
22
openapi: 3.0.3
33
info:
4-
version: 1.1.1
4+
version: 1.1.2
55
title: RootlessKit API
66
servers:
77
- url: 'http://rootlesskit/v1'

0 commit comments

Comments
 (0)