Skip to content

Commit

Permalink
Merge pull request #260 from pagarme/release/3.1.1
Browse files Browse the repository at this point in the history
Release/3.1.1
  • Loading branch information
fabiano-mallmann authored Jul 10, 2023
2 parents 463233b + 17903e8 commit 9ec5686
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 20 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pagarme/woocommerce-pagarme-payments",
"description": "Pagar.me module for Woocommerce",
"type": "wordpress-plugin",
"version": "3.1.0",
"version": "3.1.1",
"license": "GPL",
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function wc_pagarme_define($name, $value)

wc_pagarme_define('WCMP_SLUG', 'woo-pagarme-payments');
wc_pagarme_define('WCMP_PREFIX', 'pagarme');
wc_pagarme_define('WCMP_VERSION', '3.1.0');
wc_pagarme_define('WCMP_VERSION', '3.1.1');
wc_pagarme_define('WCMP_ROOT_PATH', dirname(__FILE__) . '/');
wc_pagarme_define('WCMP_ROOT_SRC', WCMP_ROOT_PATH . 'src/');
wc_pagarme_define('WCMP_ROOT_FILE', WCMP_ROOT_PATH . WCMP_SLUG . '.php');
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "woo-pagarme-payments",
"version": "3.1.0",
"version": "3.1.1",
"description": "Pagar.me module for Woocommerce",
"main": "woo-pagarme-payments.php",
"dependencies": {},
Expand Down
22 changes: 8 additions & 14 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: payments, pagarme, ecommerce, e-commerce, store, sales, sell, shop, cart,
Requires at least: 4.1
Tested up to: 6.2.2
Requires PHP: 7.1
Stable tag: 3.1.0
Stable tag: 3.1.1
License: MIT
License URI: https://github.com/pagarme/woocommerce/blob/master/LICENSE

Expand All @@ -21,6 +21,13 @@ Nosso processo de instalação é simples e bem detalhado:

== Changelog ==
Lançamos versões regularmente com melhorias, correções e atualizações.

= 3.1.1 (10/07/2023) =
Você pode conferir essas atualizações aqui: [Github](https://github.com/pagarme/woocommerce/releases/tag/3.1.1)

* **Correções:**
* Erro na validação do campo número de endereço no checkout do PHP 7.

= 3.1.0 (05/07/2023) =
Você pode conferir essas atualizações aqui: [Github](https://github.com/pagarme/woocommerce/releases/tag/3.1.0)

Expand All @@ -39,19 +46,6 @@ Você pode conferir essas atualizações aqui: [Github](https://github.com/pagar
* Guardar número de parcelas do pedido;
* Recebimento de webhooks chargeback e payment_failed.

= 3.0.0 (05/06/2023) =
Você pode conferir essas atualizações aqui: [Github](https://github.com/pagarme/woocommerce/releases/tag/3.0.0)

* **Novas implementações:**
* Os métodos de pagamento agora são independentes;
* Possibilidade de aplicar descontos para cada método de pagamento.

* **Correções:**
* Permitir plugins de pedidos sequenciais.

* **Melhorias:**
* As funções da carteira foram revisadas;
* O design do front-end foi refinado.

Para consultar versões anteriores, acesse nosso [Github](https://github.com/pagarme/woocommerce/releases).

Expand Down
4 changes: 2 additions & 2 deletions src/Model/Checkout.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function __construct(
public function validateCheckout($fields, $errors)
{
if (
$fields['billing_number'] == 0 &&
$fields['billing_number'] === 0 &&
!key_exists('billing_number_required', $errors->errors)
) {
$errors->add(
Expand All @@ -82,7 +82,7 @@ public function validateCheckout($fields, $errors)
}
if (
$fields['ship_to_different_address'] &&
$fields['shipping_number'] == 0 &&
$fields['shipping_number'] === 0 &&
!key_exists('shipping_number_required', $errors->errors)
) {
$errors->add(
Expand Down
2 changes: 1 addition & 1 deletion woo-pagarme-payments.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/*
* Plugin Name: Pagar.me module for Woocommerce
* Version: 3.1.0
* Version: 3.1.1
* Author: Pagar.me
* Author URI: https://pagar.me
* License: GPL2
Expand Down

0 comments on commit 9ec5686

Please sign in to comment.