Skip to content

Commit e2c1aaa

Browse files
Merge pull request #77 from mercadopago/feature/fix-tracking-id
feature/Fix tracking id
2 parents c485dd4 + 88d3f6f commit e2c1aaa

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/workflows/ruby.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,5 @@ jobs:
3333
run: rubocop lib
3434
- name: Run tests
3535
run: bundle exec rake
36+
env:
37+
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN_V2 }}

lib/mercadopago/config/config.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
module Mercadopago
55
class Config
6-
@@VERSION = '2.1.0'
6+
@@VERSION = '2.2.1'
77
@@USER_AGENT = "MercadoPago Ruby SDK v#{@@VERSION}"
88
@@PRODUCT_ID = 'bc32a7vtrpp001u8nhjg'
9-
@@TRACKING_ID = "plataform: ?,type:SDK#{@@VERSION},so;"
9+
@@TRACKING_ID = "platform:#{RUBY_VERSION},type:SDK#{@@VERSION},so;"
1010
@@API_BASE_URL = 'https://api.mercadopago.com'
1111
@@MIME_JSON = 'application/json'
1212
@@MIME_FORM = 'application/x-www-form-urlencoded'

mercadopago.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |gem|
44
gem.name = 'mercadopago-sdk'
5-
gem.version = '2.2.0'
5+
gem.version = '2.2.1'
66
gem.required_ruby_version = '>= 2.3.0'
77
gem.author = 'Mercado Pago'
88
gem.description = 'Mercado Pago Ruby SDK'

0 commit comments

Comments
 (0)