Skip to content

Commit

Permalink
Merge pull request #54 from tig-nl/sprint176_release
Browse files Browse the repository at this point in the history
POSTCODENL-326 - updated version number and supported magento versions
  • Loading branch information
TIG-Lucas-Hoeffnagel committed Nov 4, 2021
2 parents cffa371 + bbf8874 commit f229d0c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Block/Adminhtml/Config/Support/Tab.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Tab extends Template implements RendererInterface
{
const MODULE_NAME = 'TIG_Postcode';

const EXTENSION_VERSION = '1.4.0';
const EXTENSION_VERSION = '1.4.1';

// @codingStandardsIgnoreLine
protected $_template = 'TIG_Postcode::config/support/tab.phtml';
Expand Down
6 changes: 3 additions & 3 deletions Test/Unit/Block/Adminhtml/Config/Support/TabTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class TabTest extends TestCase
public function testGetVersionNumber()
{
$instance = $this->getInstance();
$this->assertSame('1.4.0', $instance->getVersionNumber());
$this->assertSame('1.4.1', $instance->getVersionNumber());
}

public function testGetSupportedMagentoVersions()
Expand All @@ -51,7 +51,7 @@ public function testGetSupportedMagentoVersions()
'moduleConfiguration' => $this->getConfigurationMock()
]);

$this->assertSame('2.3.7, 2.4.2', $instance->getSupportedMagentoVersions());
$this->assertSame('2.3.7, 2.4.3', $instance->getSupportedMagentoVersions());
}

/**+
Expand All @@ -62,7 +62,7 @@ private function getConfigurationMock()
$mock = $this->getFakeMock(ModuleConfiguration::class)->getMock();
$mockExpects = $mock->expects($this->once());
$mockExpects->method('getSupportedMagentoVersions');
$mockExpects->willReturn('2.3.7, 2.4.2');
$mockExpects->willReturn('2.3.7, 2.4.3');

return $mock;
}
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"magento/module-quote": ">=101.0.5,<=101.0.11|~101.1|~101.2"
},
"type": "magento2-module",
"version": "1.4.0",
"version": "1.4.1",
"license": "CC-BY-NC-ND-3.0",
"authors": [
{
Expand Down
2 changes: 1 addition & 1 deletion etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
<default>
<tig_postcode>
<supported_magento_version>2.3.7, 2.4.2</supported_magento_version>
<supported_magento_version>2.3.7, 2.4.3</supported_magento_version>
<stability/>
<configuration>
<modus>0</modus>
Expand Down

0 comments on commit f229d0c

Please sign in to comment.