diff --git a/.gitignore b/.gitignore index a556470..9993698 100644 --- a/.gitignore +++ b/.gitignore @@ -77,6 +77,12 @@ ipch/ *.psess *.vsp +################# +## Sonar +################# +.sonar/ +sonar-project.properties + # ReSharper is a .NET coding add-in _ReSharper* diff --git a/README.md b/README.md index 4c7ad12..feed5e5 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,10 @@ Para acessar e configurar o módulo acesse, na área administrativa de seu WordP Changelog --------- --- +1.1 + + - Ajuste na ativação/desativação do módulo. + 1.0 - Versão inicial. Integração com API de checkout e API de notificações. diff --git a/wpwcpagseguro.zip b/wpwcpagseguro.zip index 99cf0c7..4224cc0 100644 Binary files a/wpwcpagseguro.zip and b/wpwcpagseguro.zip differ diff --git a/wpwcpagseguro/wpwcpagseguro.php b/wpwcpagseguro/wpwcpagseguro.php index dccce82..d8aa547 100644 --- a/wpwcpagseguro/wpwcpagseguro.php +++ b/wpwcpagseguro/wpwcpagseguro.php @@ -57,7 +57,7 @@ class WP_WC_PagSeguro_Gateway extends WC_Payment_Gateway { * Version Plugin * @var version */ - private $plugin_version = '1.0'; + private $plugin_version = '1.1'; /** @@ -434,4 +434,4 @@ public function createLogFile($file){ $notification = new WP_WC_Pagseguro_Notification(); $notification->index($_POST); -} \ No newline at end of file +}