Skip to content

Commit

Permalink
Merge pull request #77 from mercadopago/feature/fix-tracking-id
Browse files Browse the repository at this point in the history
feature/Fix tracking id
  • Loading branch information
romerosilva-meli authored Oct 23, 2023
2 parents c485dd4 + 88d3f6f commit e2c1aaa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,5 @@ jobs:
run: rubocop lib
- name: Run tests
run: bundle exec rake
env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN_V2 }}
4 changes: 2 additions & 2 deletions lib/mercadopago/config/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

module Mercadopago
class Config
@@VERSION = '2.1.0'
@@VERSION = '2.2.1'
@@USER_AGENT = "MercadoPago Ruby SDK v#{@@VERSION}"
@@PRODUCT_ID = 'bc32a7vtrpp001u8nhjg'
@@TRACKING_ID = "plataform: ?,type:SDK#{@@VERSION},so;"
@@TRACKING_ID = "platform:#{RUBY_VERSION},type:SDK#{@@VERSION},so;"
@@API_BASE_URL = 'https://api.mercadopago.com'
@@MIME_JSON = 'application/json'
@@MIME_FORM = 'application/x-www-form-urlencoded'
Expand Down
2 changes: 1 addition & 1 deletion mercadopago.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |gem|
gem.name = 'mercadopago-sdk'
gem.version = '2.2.0'
gem.version = '2.2.1'
gem.required_ruby_version = '>= 2.3.0'
gem.author = 'Mercado Pago'
gem.description = 'Mercado Pago Ruby SDK'
Expand Down

0 comments on commit e2c1aaa

Please sign in to comment.