File tree 3 files changed +6
-2
lines changed
3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 1.2.2 (August 17, 2017)
2
+
3
+ * Chore: fix Faraday middleware warning
4
+
1
5
# 1.2.1 (November 18, 2016)
2
6
3
7
* Chore: bump Faraday dependency versions and loosen specificity
Original file line number Diff line number Diff line change @@ -116,7 +116,6 @@ def _build_endpoint(path)
116
116
117
117
def _build_connection
118
118
Faraday . new ( url : url ) do |faraday |
119
- faraday . adapter :excon
120
119
faraday . response :json , content_type : /\b json$/
121
120
if @basic_auth_token && @basic_auth_secret
122
121
faraday . basic_auth @basic_auth_token , @basic_auth_secret
@@ -125,6 +124,7 @@ def _build_connection
125
124
else
126
125
fail Errors ::AuthRequiredError , "You must specify either HTTP basic auth credentials or an OAuth2 access token."
127
126
end
127
+ faraday . adapter :excon
128
128
end
129
129
end
130
130
end
Original file line number Diff line number Diff line change 1
1
module PCO
2
2
module API
3
- VERSION = '1.2.1 '
3
+ VERSION = '1.2.2 '
4
4
end
5
5
end
You can’t perform that action at this time.
0 commit comments