Skip to content

Commit 10e280a

Browse files
authored
Merge pull request #2 from LeadSimple/SYS-320/fix-spelling-error
πŸ› Fix spelling error of `success` attribute
2 parents 1e91cab + e5e8ea5 commit 10e280a

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

β€ŽCHANGELOG.mdβ€Ž

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [0.1.2] - 2024-07-15
2+
3+
- Fixed spelling error for `success` attribute on `Response`
4+
15
## [0.1.1] - 2024-07-11
26

37
- Fixed bug where snake-cased keys were being converetd to camel-cased keys for API request params

β€Žlib/justcall_ruby/response.rbβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module JustCall
22
class Response
3-
attr_reader :body, :response, :sucess
3+
attr_reader :body, :response, :success
44

55
def initialize(response)
66
@response = response

β€Žlib/justcall_ruby/version.rbβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module JustCall
4-
VERSION = "0.1.1"
4+
VERSION = "0.1.2"
55
end

0 commit comments

Comments
Β (0)