Skip to content

Commit

Permalink
Merge pull request #330 from mercadopago/release/2.4.5
Browse files Browse the repository at this point in the history
Release 2.4.5
  • Loading branch information
lucmantovani authored Jan 24, 2022
2 parents 678f1e0 + 153f467 commit f10f278
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ First time using Mercado Pago? Create your [Mercado Pago account](https://www.me
1. Download [Composer](https://getcomposer.org/doc/00-intro.md) if not already installed

2. On your project directory run on the command line
`composer require "mercadopago/dx-php:2.4.4"` for PHP7 or `composer require "mercadopago/dx-php:1.12.3"` for PHP5.6.
`composer require "mercadopago/dx-php:2.4.5"` for PHP7 or `composer require "mercadopago/dx-php:1.12.3"` for PHP5.6.

3. Copy the access_token in the [credentials](https://www.mercadopago.com/mlb/account/credentials) section of the page and replace YOUR_ACCESS_TOKEN with it.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "library",
"homepage": "https://github.com/mercadopago/sdk-php",
"license": "MIT",
"version": "2.4.4",
"version": "2.4.5",
"config": {
"platform": {
"php": "7.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/classes/MercadoPago-Version.html
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ <h4 class="phpdocumentor-element__name" id="property__VERSION">
<span class="phpdocumentor-signature__visibility">public</span>
<span class="phpdocumentor-signature__static">static</span> <span class="phpdocumentor-signature__type">mixed</span>
<span class="phpdocumentor-signature__name">$_VERSION</span>
= <span class="phpdocumentor-signature__default-value">&#039;2.4.4&#039;</span></code>
= <span class="phpdocumentor-signature__default-value">&#039;2.4.5&#039;</span></code>



Expand Down
6 changes: 2 additions & 4 deletions src/MercadoPago/Entities/AuthorizedPayment.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,8 @@
/**
* Authorized Payments Class
*
* @RestMethod(resource="/authorized_payment", method="create")
* @RestMethod(resource="/authorized_payment/:id", method="read")
* @RestMethod(resource="/authorized_payment/search", method="search")
* @RestMethod(resource="/authorized_payment/:id", method="update")
* @RestMethod(resource="/authorized_payments/:id", method="read")
* @RestMethod(resource="/authorized_payments/search", method="search")
*/

class AuthorizedPayment extends Entity
Expand Down
2 changes: 1 addition & 1 deletion src/MercadoPago/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
class Version
{
public static
$_VERSION = '2.4.4';
$_VERSION = '2.4.5';
}

0 comments on commit f10f278

Please sign in to comment.