Skip to content

Commit ffb22cd

Browse files
committed
Version 5.1.1
Set default timeout to 120secs
1 parent 72892eb commit ffb22cd

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

HISTORY.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# createsend-ruby history
22

3+
## v5.1.1 - 8 Oct, 2021
4+
* increased default timeout for HTTP requests to 120secs
5+
36
## v5.1.0 - 3 Sep, 2019
47
* Added support for [Journeys API](https://www.campaignmonitor.com/api/journeys/)
58

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
git push origin master --tags
3333
```
3434

35-
- 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.
35+
- 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.
3636

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

lib/createsend/createsend.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@ class RevokedOAuthToken < Unauthorized; end
4444
# Provides high level CreateSend functionality/data you'll probably need.
4545
class CreateSend
4646
include HTTParty
47+
default_timeout 120
48+
4749
attr_reader :auth_details
4850

4951
# Specify cert authority file for cert validation

lib/createsend/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CreateSend
2-
VERSION = "5.1.0" unless defined?(CreateSend::VERSION)
2+
VERSION = "5.1.1" unless defined?(CreateSend::VERSION)
33
end

0 commit comments

Comments
 (0)