Skip to content

Commit 520b37e

Browse files
Merge pull request #51 from tig-nl/sprint171_supported_versions
POSTCODENL-308 & POSTCODENL-309 : updated extension and supported versions
2 parents fe3c0ef + 9b99f7e commit 520b37e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Block/Adminhtml/Config/Support/Tab.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Tab extends Template implements RendererInterface
4040
{
4141
const MODULE_NAME = 'TIG_Postcode';
4242

43-
const EXTENSION_VERSION = '1.4.0';
43+
const EXTENSION_VERSION = '1.4.1';
4444

4545
// @codingStandardsIgnoreLine
4646
protected $_template = 'TIG_Postcode::config/support/tab.phtml';

Test/Unit/Block/Adminhtml/Config/Support/TabTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class TabTest extends TestCase
4242
public function testGetVersionNumber()
4343
{
4444
$instance = $this->getInstance();
45-
$this->assertSame('1.4.0', $instance->getVersionNumber());
45+
$this->assertSame('1.4.1', $instance->getVersionNumber());
4646
}
4747

4848
public function testGetSupportedMagentoVersions()
@@ -51,7 +51,7 @@ public function testGetSupportedMagentoVersions()
5151
'moduleConfiguration' => $this->getConfigurationMock()
5252
]);
5353

54-
$this->assertSame('2.3.7, 2.4.2', $instance->getSupportedMagentoVersions());
54+
$this->assertSame('2.3.7-p1, 2.4.3', $instance->getSupportedMagentoVersions());
5555
}
5656

5757
/**+
@@ -62,7 +62,7 @@ private function getConfigurationMock()
6262
$mock = $this->getFakeMock(ModuleConfiguration::class)->getMock();
6363
$mockExpects = $mock->expects($this->once());
6464
$mockExpects->method('getSupportedMagentoVersions');
65-
$mockExpects->willReturn('2.3.7, 2.4.2');
65+
$mockExpects->willReturn('2.3.7-p1, 2.4.3');
6666

6767
return $mock;
6868
}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"magento/module-quote": ">=101.0.5,<=101.0.11|~101.1|~101.2"
88
},
99
"type": "magento2-module",
10-
"version": "1.4.0",
10+
"version": "1.4.1",
1111
"license": "CC-BY-NC-ND-3.0",
1212
"authors": [
1313
{

etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Store:etc/config.xsd">
3434
<default>
3535
<tig_postcode>
36-
<supported_magento_version>2.3.7, 2.4.2</supported_magento_version>
36+
<supported_magento_version>2.3.7-p1, 2.4.3</supported_magento_version>
3737
<stability/>
3838
<configuration>
3939
<modus>0</modus>

0 commit comments

Comments
 (0)