diff --git a/client_test.go b/client_test.go index b85bfb3..8201fd6 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.6 + // Output:loaded client: go-tonicpow: v0.6.7 } // BenchmarkNewClient benchmarks the method NewClient() diff --git a/definitions.go b/definitions.go index e8fca18..439ae88 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.6" // go-tonicpow version + version string = "v0.6.7" // 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 53955f5..8ace13a 100644 --- a/tonicpow_test.go +++ b/tonicpow_test.go @@ -40,7 +40,7 @@ func TestVersion(t *testing.T) { // See more examples in /examples/ func ExampleVersion() { fmt.Printf("version: %s", Version()) - // Output:version: v0.6.6 + // Output:version: v0.6.7 } // TestUserAgent will test the method UserAgent() @@ -58,7 +58,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.6 + // Output:user agent: go-tonicpow: v0.6.7 } // TestGetFeedType will test the method GetFeedType()