Merge pull request #131 from digitalocean/bake-release

bumping to 1.0.0
This commit is contained in:
Lucas Fontes 2017-03-10 15:51:26 -05:00 committed by GitHub
commit 84099941ba
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import (
)
const (
libraryVersion = "0.1.0"
libraryVersion = "1.0.0"
defaultBaseURL = "https://api.digitalocean.com/"
userAgent = "godo/" + libraryVersion
mediaType = "application/json"
@ -61,7 +61,7 @@ type Client struct {
StorageActions StorageActionsService
Tags TagsService
LoadBalancers LoadBalancersService
Certificates CertificatesService
Certificates CertificatesService
// Optional function called after every successful request made to the DO APIs
onRequestCompleted RequestCompletionCallback