Skip to content

Commit

Permalink
Bump v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Soulou committed Mar 6, 2020
1 parent edd4f77 commit 8c66086
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# To be released

# [2020-03-06] 1.8.1

* Update api.Client interface

# [2020-03-06] 1.8.0

* Feature: Allow the configuration of KeepaliveInterval and HealthcheckInterval by IP
Expand Down
4 changes: 1 addition & 3 deletions api/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ package api

import (
"context"

"github.com/Scalingo/link/models"
)

type Client interface {
ListIPs(ctx context.Context) ([]IP, error)
GetIP(ctx context.Context, id string) (IP, error)
AddIP(ctx context.Context, ip string, checks ...models.Healthcheck) (IP, error)
AddIP(ctx context.Context, ip string, params AddIPParams) (IP, error)
RemoveIP(ctx context.Context, id string) error
TryGetLock(ctx context.Context, id string) error
Version(ctx context.Context) (string, error)
Expand Down

0 comments on commit 8c66086

Please sign in to comment.