We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e91cab + e5e8ea5 commit 10e280aCopy full SHA for 10e280a
βCHANGELOG.mdβ
@@ -1,3 +1,7 @@
1
+## [0.1.2] - 2024-07-15
2
+
3
+- Fixed spelling error for `success` attribute on `Response`
4
5
## [0.1.1] - 2024-07-11
6
7
- Fixed bug where snake-cased keys were being converetd to camel-cased keys for API request params
βlib/justcall_ruby/response.rbβ
@@ -1,6 +1,6 @@
module JustCall
class Response
- attr_reader :body, :response, :sucess
+ attr_reader :body, :response, :success
def initialize(response)
@response = response
βlib/justcall_ruby/version.rbβ
@@ -1,5 +1,5 @@
# frozen_string_literal: true
- VERSION = "0.1.1"
+ VERSION = "0.1.2"
end
0 commit comments