Skip to content

Commit

Permalink
Merge pull request #163 from ignacio-chiazzo/upgrade-v
Browse files Browse the repository at this point in the history
Upgrade 1.0.1
  • Loading branch information
ignacio-chiazzo authored Oct 16, 2024
2 parents ea368f1 + 5704702 commit 86b3681
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 12 deletions.
21 changes: 13 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
whatsapp_sdk (1.0.0)
faraday (~> 2)
whatsapp_sdk (1.0.1)
faraday (~> 2.0, > 2.0.1)
faraday-multipart (~> 1)
zeitwerk (~> 2)

Expand All @@ -16,18 +16,23 @@ GEM
coderay (1.1.3)
crack (0.4.5)
rexml
faraday (2.8.1)
base64
faraday-net_http (>= 2.0, < 3.1)
ruby2_keywords (>= 0.0.4)
faraday (2.12.0)
faraday-net_http (>= 2.0, < 3.4)
json
logger
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (3.0.2)
faraday-net_http (3.3.0)
net-http
hashdiff (1.0.1)
json (2.7.2)
logger (1.6.1)
method_source (1.0.0)
minitest (5.16.1)
mocha (1.14.0)
multipart-post (2.4.1)
net-http (0.4.1)
uri
parallel (1.22.1)
parser (3.1.2.0)
ast (~> 2.4.1)
Expand Down Expand Up @@ -59,9 +64,9 @@ GEM
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
ruby2_keywords (0.0.5)
strscan (3.1.0)
unicode-display_width (2.2.0)
uri (0.13.1)
vcr (6.3.1)
base64
webmock (3.18.1)
Expand Down
2 changes: 1 addition & 1 deletion lib/whatsapp_sdk/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module WhatsappSdk
VERSION = "1.0.0"
VERSION = "1.0.1"
end
2 changes: 1 addition & 1 deletion test/whatsapp/api/templates_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def test_get_templates
{ "type" => "BODY",
"text" =>
"Welcome and congratulations!! This message demonstrates your ability to send a message " \
"notification from WhatsApp Business Platform’s Cloud API. Thank you for taking the time "\
"notification from WhatsApp Business Platform’s Cloud API. Thank you for taking the time " \
"to test with us." },
{ "type" => "FOOTER", "text" => "WhatsApp Business API Team" }],
first_template.components_json
Expand Down
2 changes: 1 addition & 1 deletion test/whatsapp/version_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@

class VersionTest < Minitest::Test
def test_that_it_has_a_version_number
assert_equal("1.0.0", WhatsappSdk::VERSION)
assert_equal("1.0.1", WhatsappSdk::VERSION)
end
end
2 changes: 1 addition & 1 deletion whatsapp_sdk.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency("minitest", "~> 5.0")
spec.add_development_dependency("rake", "~> 12.3")

spec.add_dependency("faraday", "~> 2")
spec.add_dependency("faraday", "~> 2.0", "> 2.0.1")
spec.add_dependency("faraday-multipart", "~> 1")
spec.add_dependency("zeitwerk", "~> 2")
spec.metadata['rubygems_mfa_required'] = 'true'
Expand Down

0 comments on commit 86b3681

Please sign in to comment.