Skip to content

Commit

Permalink
Merge pull request #863 from ebanx/version-bump-2.0.0
Browse files Browse the repository at this point in the history
Version bump `2.0.0`
  • Loading branch information
jhonypg authored Sep 3, 2021
2 parents f503c13 + fc24067 commit b9914dc
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# CHANGELOG
# 2.0.0

* Add PIX as payment available to Brazil
* Update dependencies and versions*
* Add an option to the admin panel to allow the merchant to not require tax ids

> Because of the versions update, we are jumping to the next major version: `2.0.0`. This will break the legacy.
# 1.41.3
* Fix - Fix compability with some themes [#842](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/842)

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ Integrate your WooCommerce store with the EBANX payment gateway and improve your
Please, visit the [official plugin page on WordPress store](https://wordpress.org/plugins/ebanx-payment-gateway-for-woocommerce/).

## Requirements
* PHP 5.6+
* Wordpress 4.0+
* WooCommerce 3.0+
* PHP 7.3+
* Wordpress 5.5+
* WooCommerce 4.5+

## Installation

Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: '3'

services:
woocommerce:
image: ebanx/woocommerce-gateway-ebanx:1.41.5
image: ebanx/woocommerce-gateway-ebanx:2.0.0
build: .
environment:
WORDPRESS_DB_USER: root
WORDPRESS_DB_PASSWORD: root
WORDPRESS_DB_NAME: wordpress
WORDPRESS_DB_HOST: mysql
EBANX_WC_PLUGIN_VERSION: 5.4.1
EBANX_WC_PLUGIN_VERSION: 5.8.0
EBANX_STOREFRONT_THEME_VERSION: 3.7.0
EBANX_ADMIN_USERNAME: ebanx
EBANX_ADMIN_PASSWORD: ebanx
Expand Down
15 changes: 11 additions & 4 deletions readme.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
=== EBANX Payment Gateway for WooCommerce ===
Contributors: ebanxwp
Tags: credit card, boleto, ebanx, woocommerce, payment gateway, latin america, brazil, mexico, argentina, peru, colombia, chile, ecuador, cash payment, local payment, card payment, one-click payment, alternative payments, payment processing
Requires at least: 4.0
Tested up to: 4.9
Stable tag: 1.41.3
Requires at least: 5.5
Tested up to: 5.8
Stable tag: 2.0.0
License: Apache v2.0
License URI: http://www.apache.org/licenses/LICENSE-2.0

Expand Down Expand Up @@ -103,7 +103,7 @@ On the [EBANX Developer’s Academy](https://developers.ebanx.com/integrations/e
* EBANX Boleto, Cash Payment
* Hipercard, Elo, and Aura Domestic Credit Cards
* Online Debit Transfer
* EBANX Account, Debit Transfer
* EBANX Account, Debit Transfer, PIX
* Mexico
* OXXO, Cash Payment
* Debit & Credit Cards
Expand Down Expand Up @@ -148,6 +148,13 @@ Yes, you can.


== Changelog ==
= 2.0.0 =
* Add PIX as payment available to Brazil
* Update dependencies and versions*
* Add an option to the admin panel to allow the merchant to not require tax ids

> Because of the versions update, we are jumping to the next major version: `2.0.0`. This will break the legacy.

= 1.41.3 =
* Fix - Fix compability with some themes [#842](https://github.com/ebanx/woocommerce-gateway-ebanx/pull/842)

Expand Down
12 changes: 6 additions & 6 deletions woocommerce-gateway-ebanx.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
* AliExpress, AirBnB and Spotify in Brazil.
* Author: EBANX
* Author URI: https://www.ebanx.com/business/en
* Version: 1.41.5
* Version: 2.0.0
* License: MIT
* Text Domain: woocommerce-gateway-ebanx
* Domain Path: /languages
* Requires PHP: 7.3
* Requires at least: 5.5.0
* Tested up to: 5.7.1
* Tested up to: 5.8.0
* WC requires at least: 4.5.0
* WC tested up to: 5.3.0
* WC tested up to: 5.5.2
*
* @package WooCommerce_EBANX
*/
Expand All @@ -24,9 +24,9 @@
exit;
}

define( 'WC_EBANX_MIN_PHP_VER', '5.6.0' );
define( 'WC_EBANX_MIN_WC_VER', '2.6.0' );
define( 'WC_EBANX_MIN_WP_VER', '4.0.0' );
define( 'WC_EBANX_MIN_PHP_VER', '7.3.0' );
define( 'WC_EBANX_MIN_WC_VER', '4.5.0' );
define( 'WC_EBANX_MIN_WP_VER', '5.5.0' );
define( 'WC_EBANX_DIR', __DIR__ . DIRECTORY_SEPARATOR );
define( 'WC_EBANX_PLUGIN_DIR_URL', plugin_dir_url( __FILE__ ) . DIRECTORY_SEPARATOR );
define( 'WC_EBANX_PLUGIN_NAME', WC_EBANX_PLUGIN_DIR_URL . basename( __FILE__ ) );
Expand Down

0 comments on commit b9914dc

Please sign in to comment.