diff --git a/CHANGELOG.md b/CHANGELOG.md index 251d746..ab985d3 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 1.2.0 + +- Updated: Changing from gerencianet.com.br to efipay.com.br +- Updated: http.rb non sticky version + # 1.0.2 - Updated: PixSend example diff --git a/gerencianet.gemspec b/gerencianet.gemspec index 237872b..faebbf5 100755 --- a/gerencianet.gemspec +++ b/gerencianet.gemspec @@ -33,5 +33,5 @@ Gem::Specification.new do |spec| spec.add_development_dependency "rubocop", "~> 0.49.1", ">= 0.49.1" spec.add_development_dependency "listen", "~> 3.0.4", ">= 3.0.4" - spec.add_runtime_dependency "http", "~> 0.9", ">= 0.9.8" + spec.add_runtime_dependency "http", ">= 0.9.8" end diff --git a/lib/gerencianet/constants.rb b/lib/gerencianet/constants.rb index d172c07..e616515 100755 --- a/lib/gerencianet/constants.rb +++ b/lib/gerencianet/constants.rb @@ -3,12 +3,12 @@ module Gerencianet module Constants URL = { DEFAULT: { - production: "https://api.gerencianet.com.br/v1", - sandbox: "https://sandbox.gerencianet.com.br/v1" + production: "https://cobrancas.api.efipay.com.br/v1", + sandbox: "https://cobrancas-h.api.efipay.com.br/v1" }, PIX: { - production: "https://api-pix.gerencianet.com.br", - sandbox: "https://api-pix-h.gerencianet.com.br" + production: "https://pix.api.efipay.com.br", + sandbox: "https://pix-h.api.efipay.com.br" } } diff --git a/lib/gerencianet/version.rb b/lib/gerencianet/version.rb index a18ff56..15d870c 100755 --- a/lib/gerencianet/version.rb +++ b/lib/gerencianet/version.rb @@ -1,4 +1,4 @@ # :nodoc: module Gerencianet - VERSION = "1.1.2" + VERSION = "1.2.0" end