Skip to content

Commit b46e102

Browse files
committed
Version update
1 parent 705bad3 commit b46e102

File tree

6 files changed

+51
-12
lines changed

6 files changed

+51
-12
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,24 @@ This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a
1313

1414
_No documentation available about unreleased changes as of yet._
1515

16+
## [2.3.0] - 2023-01-04
17+
18+
This release will fix the affected change due to Croatia entering the Euro-zone.
19+
20+
### Added
21+
22+
* Add a fallback to checking if offers exist in case the invoices don't exist
23+
* Add a way to clear Croatian National Bank API transient response
24+
25+
### Changed
26+
27+
* Update HNB API link to a new v3 working one
28+
* Fix conversion logic for currencies
29+
30+
### Fixed
31+
32+
* Fix filter type for plugin link hook
33+
1634
## [2.2.0] - 2022-01-18
1735

1836
### Added
@@ -351,6 +369,8 @@ A lot of issues were fixed. The plugin should be more stable and work better now
351369
* Initial release
352370

353371
[Unreleased]: https://github.com/dingo-d/woo-solo-api/compare/master...HEAD
372+
[2.3.0]: https://github.com/dingo-d/woo-solo-api/compare/2.2.0...2.3.0
373+
[2.2.0]: https://github.com/dingo-d/woo-solo-api/compare/2.1.0...2.2.0
354374
[2.1.0]: https://github.com/dingo-d/woo-solo-api/compare/2.0.8...2.1.0
355375
[2.0.8]: https://github.com/dingo-d/woo-solo-api/compare/2.0.7...2.0.8
356376
[2.0.7]: https://github.com/dingo-d/woo-solo-api/compare/2.0.6...2.0.7

README.txt

Lines changed: 27 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
=== Woo Solo Api ===
22
Contributors: dingo_bastard
33
Tags: woocommerce, api, solo api, solo, api integration, shop, payment, woo
4-
Requires at least: 5.3
4+
Requires at least: 5.8
55
Requires PHP: 7.3
6-
Tested up to: 5.9
7-
Stable tag: 2.2.0
8-
WC requires at least: 4.0.0
9-
WC tested up to: 6.0.0
6+
Tested up to: 6.1.1
7+
Stable tag: 2.3.0
8+
WC requires at least: 6.0.0
9+
WC tested up to: 7.2.2
1010
License: MIT
1111
License URI: https://opensource.org/licenses/MIT
1212

@@ -50,9 +50,9 @@ Be sure you have WooCommerce plugin installed first, otherwise you'll get an err
5050

5151
== Requirements ==
5252

53-
* PHP 7.3 or greater
54-
* WordPress 5.3 or above
55-
* WooCommerce 4.0.0 or above
53+
* PHP 7.3 or greater (not fully tested with PHP 8+)
54+
* WordPress 5.8 or above
55+
* WooCommerce 6.0.0 or above
5656
* Non IE browser
5757

5858
== Screenshots ==
@@ -66,6 +66,25 @@ Be sure you have WooCommerce plugin installed first, otherwise you'll get an err
6666

6767
== Changelog ==
6868

69+
= 2.3.0 =
70+
Release Date: January 4th, 2023
71+
72+
This release will fix the affected change due to Croatia entering the Euro-zone.
73+
74+
### Added
75+
76+
* Add a fallback to checking if offers exist in case the invoices don't exist
77+
* Add a way to clear Croatian National Bank API transient response
78+
79+
### Changed
80+
81+
* Update HNB API link to a new v3 working one
82+
* Fix conversion logic for currencies
83+
84+
### Fixed
85+
86+
* Fix filter type for plugin link hook
87+
6988
= 2.2.0 =
7089
Release Date: January 18th, 2022
7190

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "woo-solo-api",
3-
"version": "2.2.1",
3+
"version": "2.3.0",
44
"description": "This plugin provides integration of the SOLO API service with WooCommerce.",
55
"authors": [
66
{

src/Request/SoloApiRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* This class holds the actual remote call that will be made towards Solo API.
3939
*
4040
* @package MadeByDenis\WooSoloApi\Request
41-
* @since 2.2.1 Update the way the currency is handled and converted,
41+
* @since 2.3.0 Update the way the currency is handled and converted,
4242
* due to Euro being official Croatian currency.
4343
* @since 2.0.0
4444
*/

src/Utils/FetchExchangeRate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* For the documentation @see https://api.hnb.hr/
2727
*
2828
* @package MadeByDenis\WooSoloApi\Utils
29-
* @since 2.2.1 Updated the Croatian National Bank API URL.
29+
* @since 2.3.0 Updated the Croatian National Bank API URL.
3030
* @since 2.0.0
3131
*/
3232
class FetchExchangeRate implements Registrable

woo-solo-api.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Woo Solo Api
1111
* Plugin URI: https://madebydenis.com/woo-solo-api
1212
* Description: This plugin provides integration of the SOLO API service with WooCommerce.
13-
* Version: 2.2.1
13+
* Version: 2.3.0
1414
* Author: Denis Žoljom
1515
* Author URI: https://madebydenis.com
1616
* License: MIT

0 commit comments

Comments
 (0)