Skip to content

Commit

Permalink
Merge pull request #169 from ignacio-chiazzo/release-1.0.3
Browse files Browse the repository at this point in the history
Cut release 1.0.3
  • Loading branch information
ignacio-chiazzo authored Jan 8, 2025
2 parents 8571a55 + 34fb50c commit 5203763
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Unreleased

# v 1.0.1
- Send the current client instance to the initializer of the client resource #165
# v 1.0.3
- Fix configuration bug setting `api_version` on Configure. @frenesim [#168](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/168)

# v 1.0.2
- Send the current client instance to the initializer of the client resource #165
[#165](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/165) @omarowns

#v 1.0.1
- Update `require error` @guizaols [162](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/162)

# v 1.0.0
- Implement a Better response API [159](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/156)
- Implement a Better API for calling the Cloud API [156](https://github.com/ignacio-chiazzo/ruby_whatsapp_sdk/pull/156)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
whatsapp_sdk (1.0.2)
whatsapp_sdk (1.0.3)
faraday (~> 2.0, > 2.0.1)
faraday-multipart (~> 1)
zeitwerk (~> 2)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ Note: Sometimes the messages are delayed; see [Meta documentation](https://devel

After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests.

Run ' bundle exec rake install ' to install this gem onto your local machine. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
Run ' bundle exec rake install' to install this gem onto your local machine. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).

### Run all the tests

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.2"
VERSION = "1.0.3"
end
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.2", WhatsappSdk::VERSION)
assert_equal("1.0.3", WhatsappSdk::VERSION)
end
end

0 comments on commit 5203763

Please sign in to comment.