Skip to content

Commit

Permalink
Version 5.1.1
Browse files Browse the repository at this point in the history
Set default timeout to 120secs
  • Loading branch information
markstaples committed Oct 8, 2021
1 parent 72892eb commit ffb22cd
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# createsend-ruby history

## v5.1.1 - 8 Oct, 2021
* increased default timeout for HTTP requests to 120secs

## v5.1.0 - 3 Sep, 2019
* Added support for [Journeys API](https://www.campaignmonitor.com/api/journeys/)

Expand Down
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
git push origin master --tags
```

- Ensure that all [tests](https://travis-ci.org/campaignmonitor/createsend-ruby) pass, and that [coverage](https://coveralls.io/r/campaignmonitor/createsend-ruby) is maintained or improved.
- Ensure that all [tests](https://app.travis-ci.com/github/campaignmonitor/createsend-ruby) pass, and that [coverage](https://coveralls.io/r/campaignmonitor/createsend-ruby) is maintained or improved.

- Add a new [GitHub Release](https://github.com/campaignmonitor/createsend-ruby/releases) using the newly created tag.

Expand Down
2 changes: 2 additions & 0 deletions lib/createsend/createsend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ class RevokedOAuthToken < Unauthorized; end
# Provides high level CreateSend functionality/data you'll probably need.
class CreateSend
include HTTParty
default_timeout 120

attr_reader :auth_details

# Specify cert authority file for cert validation
Expand Down
2 changes: 1 addition & 1 deletion lib/createsend/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CreateSend
VERSION = "5.1.0" unless defined?(CreateSend::VERSION)
VERSION = "5.1.1" unless defined?(CreateSend::VERSION)
end

0 comments on commit ffb22cd

Please sign in to comment.