diff --git a/CHANGELOG.md b/CHANGELOG.md index e23f8e5b..2f79e159 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # Changelog # +#### Changes in release 9.0.5 + + Fixed notice error when shipping method is used that isn't linked to a tax class. + + Fixed update functionality. + #### Changes in release 9.0.4 + Added conditional checking for OC 1.5, so OCMod checks are not attempted on a version that doesn't support it. diff --git a/catalog/controller/payment/mollie/helper.php b/catalog/controller/payment/mollie/helper.php index 3f2c46f1..33f6b773 100644 --- a/catalog/controller/payment/mollie/helper.php +++ b/catalog/controller/payment/mollie/helper.php @@ -5,7 +5,7 @@ class MollieHelper { - const PLUGIN_VERSION = "9.0.4"; + const PLUGIN_VERSION = "9.0.5"; // All available modules. These should correspond to the Mollie_API_Object_Method constants. const MODULE_NAME_BANKTRANSFER = "banktransfer"; diff --git a/release.sh b/release.sh index f9b37b33..03c5ce75 100755 --- a/release.sh +++ b/release.sh @@ -8,10 +8,11 @@ echo "3/5 Unzip temporary zip to upload dir..." unzip -q temp.zip -d upload echo "4/5 Create opencart installable zip..." rm mollie-opencart-2.3-and-up.ocmod.zip +rm mollie-opencart-1.5-and-up.vqmod.zip zip -9 -rq mollie-opencart-1.5-and-up.vqmod.zip upload LICENSE readme.md -x *.git* *.DS_Store echo "5/5 Cleanup..." rm -rf ./upload rm -rf ./temp.zip -echo "Done!" \ No newline at end of file +echo "Done!"