diff --git a/client_test.go b/client_test.go index 57992e1..1ba9a85 100644 --- a/client_test.go +++ b/client_test.go @@ -187,7 +187,7 @@ func ExampleNewClient() { return } fmt.Printf("loaded client: %s", client.options.userAgent) - // Output:loaded client: go-tonicpow: v0.6.10 + // Output:loaded client: go-tonicpow: v0.6.11 } // BenchmarkNewClient benchmarks the method NewClient() diff --git a/definitions.go b/definitions.go index af3dbd1..188b7d6 100644 --- a/definitions.go +++ b/definitions.go @@ -10,7 +10,7 @@ const ( defaultHTTPTimeout = 10 * time.Second // Default timeout for all GET requests in seconds defaultRetryCount int = 2 // Default retry count for HTTP requests defaultUserAgent = "go-tonicpow: " + version // Default user agent - version string = "v0.6.10" // go-tonicpow version + version string = "v0.6.11" // go-tonicpow version // Field key names for various model requests fieldAdvertiserProfileID = "advertiser_profile_id" diff --git a/tonicpow_test.go b/tonicpow_test.go index 4328962..14f3fd6 100644 --- a/tonicpow_test.go +++ b/tonicpow_test.go @@ -41,7 +41,7 @@ func TestVersion(t *testing.T) { // See more examples in /examples/ func ExampleVersion() { fmt.Printf("version: %s", Version()) - // Output:version: v0.6.10 + // Output:version: v0.6.11 } // TestUserAgent will test the method UserAgent() @@ -59,7 +59,7 @@ func TestUserAgent(t *testing.T) { // See more examples in /examples/ func ExampleUserAgent() { fmt.Printf("user agent: %s", UserAgent()) - // Output:user agent: go-tonicpow: v0.6.10 + // Output:user agent: go-tonicpow: v0.6.11 } // TestGetFeedType will test the method GetFeedType()