Skip to content

Commit

Permalink
Merge pull request #163 from TransbankDevelopers/chore/prepare-releas…
Browse files Browse the repository at this point in the history
…e-1.10.0

Chore/prepare release 1.10.0
  • Loading branch information
Felipe Fiebig authored Dec 10, 2020
2 parents 24d9d18 + 40ac06a commit 05b743c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ Todos los cambios notables a este proyecto serán documentados en este archivo.
El formato está basado en [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
y este proyecto adhiere a [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.10.0] - 2020-12-10
### Added
- Se agrega soporte para Oneclick Mall Captura Diferida
- Se agrega helper para pasar a produccion Oneclick `Oneclick::configureForProduction($commerceCode, $apiKeySecret)`

### Fixed
- El response code de la respuesta de una reversa en Oneclick ya no es ignorado por el SDK.

## [1.9.0] - 2020-12-09
### Added
- Se agrega método helper `WebpayPlus::configureForProduction($commerceCode, $apiKeySecret)` [PR #153](https://github.com/TransbankDevelopers/transbank-sdk-php/pull/153)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ automaticamente, pero si usas el SDK de manera directa requerirás también:
Para usar el SDK en tu proyecto puedes usar Composer (si no lo tienes instalado, puedes instalarlo [acá](https://getcomposer.org/)), añadiendo el SDK como dependencia a tu proyecto:
```json
"require": {
"transbank/transbank-sdk": "^1.8"
"transbank/transbank-sdk": "^1.10"
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/Webpay/Oneclick.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static function configureOneclickMallDeferredForTesting(){
self::setIntegrationType(Options::DEFAULT_INTEGRATION_TYPE);
}

public static function configureOneclickMallForProduction($apiKey, $commerceCode)
public static function configureOneclickMallForProduction($commerceCode, $apiKey)
{
self::setApiKey($apiKey);
self::setCommerceCode($commerceCode);
Expand Down

0 comments on commit 05b743c

Please sign in to comment.