Skip to content

Commit

Permalink
prepare release 1.3.12 (#75)
Browse files Browse the repository at this point in the history
prepare release 1.3.12
  • Loading branch information
schmitzcarsten authored Feb 15, 2021
1 parent bfe77aa commit 1c6aca4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kiener/mollie-payments-plugin",
"description": "Mollie Payments",
"version": "v1.3.11",
"version": "v1.3.12",
"type": "shopware-platform-plugin",
"license": "MIT",
"authors": [
Expand Down
7 changes: 7 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
.PHONY: help
.DEFAULT_GOAL := help

PLUGIN_VERSION=`php -r 'echo json_decode(file_get_contents("MolliePayments/composer.json"))->version;'`

help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

Expand All @@ -23,3 +25,8 @@ clean: ## Cleans all dependencies
# ------------------------------------------------------------------------------------------------------------
test: ## Starts all Tests
php vendor/bin/phpunit --configuration=phpunit.xml

# ------------------------------------------------------------------------------------------------------------

release: ## Creates a new ZIP package
@cd .. && zip -qq -r -0 MolliePayments-$(PLUGIN_VERSION).zip MolliePayments/ -x '*.git*' '*.reports*' '*.travis.yml*' '*/tests*' '*/makefile' '*.DS_Store'
2 changes: 1 addition & 1 deletion src/Factory/MollieApiFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public function getClient(?string $salesChannelId = null, ?Context $context = nu

// @todo Add plugin version variable
$this->apiClient->addVersionString(
'MollieShopware6/1.3.11'
'MollieShopware6/1.3.12'
);
} catch (Exception $e) {
$this->logger->error($e->getMessage(), [$e]);
Expand Down

0 comments on commit 1c6aca4

Please sign in to comment.