Skip to content

Commit

Permalink
Merge pull request #79 from luizbills/2.3.0-changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
luizbills authored Sep 19, 2023
2 parents 5e095cd + d363a38 commit b84b9f2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 9 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,20 @@

All notable changes to this project will be documented in this file.

## 2.3.0 - 2023-09-19

[Source code changes](https://github.com/luizbills/shipping-simulator-for-woocommerce/compare/2.2.2...2.3.0)

- Tweak: Now uses the [OpenCEP API](https://opencep.com/) to search addresses.
- Tweak: Renamed filter hook from `woocommerce_correios_get_estimating_delivery` to `wc_shipping_simulator_get_estimating_delivery`.
- Tweak: Delivery estimating will be shown for other delivery methods.
- Fix: street name was not updating.

## 2.2.2 - 2023-08-14

[Source code changes](https://github.com/luizbills/shipping-simulator-for-woocommerce/compare/2.2.1...2.2.2)

- Tweak: Remove an uncessary internal check for variations.
- Tweak: Remove an uncessary internal check for variations.

## 2.2.1 - 2023-07-20

Expand Down
6 changes: 1 addition & 5 deletions classes/Integration/Autofill_Brazilian_Addresses.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,7 @@ public function results_title_address ( $address_string, $data ) {
$address['city'],
$address['state']
];
$address_string = '<strong>' . apply_filters(
'wc_shipping_simulator_integration_correios_results_address',
implode( ', ', array_filter( $parts ) ),
$address
) . '</strong>';
$address_string = '<strong>' . implode( ', ', array_filter( $parts ) ) . '</strong>';
}
return $address_string;
}
Expand Down
9 changes: 6 additions & 3 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Contributors: luizbills
Donate link: https://luizpb.com/donate/
Tags: woocommerce, shipping simulator, simulador de frete, brazil, brasil, calculadora de frete, shipping calculator, product
Stable tag: 2.2.2
Stable tag: 2.3.0
Requires at least: 4.9
Requires PHP: 7.4
Tested up to: 6.2
Expand Down Expand Up @@ -50,9 +50,12 @@ You can ask for help in the [Plugin Forum](https://wordpress.org/support/plugin/

== Changelog ==

= v2.2.2 =
= v2.3.0 =

- Tweak: Remove an uncessary internal check for variations.
- Tweak: Now uses the [OpenCEP API](https://opencep.com/) to search addresses.
- Tweak: Renamed filter hook from `woocommerce_correios_get_estimating_delivery` to `wc_shipping_simulator_get_estimating_delivery`.
- Tweak: Delivery estimating will be shown for other delivery methods.
- Fix: street name was not updating.

[See changelog for all versions](https://github.com/luizbills/shipping-simulator-for-woocommerce/blob/main/CHANGELOG.md)

Expand Down

0 comments on commit b84b9f2

Please sign in to comment.