Skip to content

Commit 404906d

Browse files
Release v3.8.3
* API improvements.
2 parents 93af5eb + 86ac281 commit 404906d

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

HISTORY.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
## Change Log
22

3+
#### [v3.8.3](https://github.com/aplazame/woocommerce/tree/v3.8.3) (2023-08-11)
4+
5+
* API improvements.
6+
37
#### [v3.8.2](https://github.com/aplazame/woocommerce/tree/v3.8.2) (2023-07-26)
48

59
* Another re-release for wordpress.org.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugin_path ?= plugin
22
i18n_path ?= i18n/languages
33
i18n_name ?= aplazame-es_ES
4-
version ?= v3.8.2
4+
version ?= v3.8.3
55
errors = $(shell find . -type f -name "*.php" -exec php -l "{}" \;| grep "Errors parsing ";)
66

77
clean:

plugin/README.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: aplazame,woocommerce,ecommerce,payment,checkout,credit,aplazar,financiar,f
44
Requires at least: 4.0.1
55
Tested up to: 6.2.2
66
Requires PHP: 5.3.0
7-
Stable tag: 3.8.2
7+
Stable tag: 3.8.3
88
License: BSD-3-Clause
99
License URI: https://github.com/aplazame/woocommerce/blob/master/LICENSE
1010

@@ -77,6 +77,10 @@ Of course, simply select an *"Aplazame refund"* in the product detail.
7777

7878
== Changelog ==
7979

80+
#### [v3.8.3](https://github.com/aplazame/woocommerce/tree/v3.8.3) (2023-08-11)
81+
82+
* API improvements.
83+
8084
#### [v3.8.2](https://github.com/aplazame/woocommerce/tree/v3.8.2) (2023-07-26)
8185

8286
* Another re-release for wordpress.org.

plugin/aplazame.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
* Plugin Name: Aplazame
44
* Plugin URI: https://github.com/aplazame/woocommerce
5-
* Version: 3.8.2
5+
* Version: 3.8.3
66
* Description: Aplazame offers a payment method to receive funding for the purchases.
77
* Author: Aplazame
88
* Author URI: https://aplazame.com
@@ -25,7 +25,7 @@
2525
require_once 'lib/Aplazame/Aplazame/autoload.php';
2626

2727
class WC_Aplazame {
28-
const VERSION = '3.8.2';
28+
const VERSION = '3.8.3';
2929
const METHOD_ID = 'aplazame';
3030
const METHOD_TITLE = 'Aplazame';
3131

@@ -67,7 +67,7 @@ public static function configure_aplazame_profile( $sandbox, $private_key ) {
6767
$private_key
6868
);
6969

70-
return $client->get( '/me' );
70+
return $client->get( '/merchants/api-keys' );
7171
}
7272

7373
/**

plugin/i18n/languages/aplazame.pot

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: Aplazame v3.8.2\n"
9+
"Project-Id-Version: Aplazame v3.8.3\n"
1010
"Report-Msgid-Bugs-To: https://github.com/aplazame/woocommerce\n"
11-
"POT-Creation-Date: 2023-07-26 09:45+0000\n"
11+
"POT-Creation-Date: 2023-08-11 10:07+0000\n"
1212
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: https://github.com/aplazame/woocommerce\n"

0 commit comments

Comments
 (0)