Skip to content

Commit 177fd83

Browse files
committed
Merge branch 'release/1.23' into demo/1.23
2 parents a205cef + 370f052 commit 177fd83

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

config/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version": "1.23.0-beta.1"}
1+
{"version": "1.23.0"}

tests/unit/ModuleLoaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public function testCanLoadAllVersionsByContraint()
7979

8080
// tests for version >=1.0.0
8181
$modules = $this->loader->loadAllByArchiveNameAndConstraint('composer/autoload', '^1.2.0');
82-
$this->assertEquals(5, count($modules));
82+
$this->assertEquals(6, count($modules));
8383
$this->assertEquals('1.2.0', $modules[0]->getVersion());
8484
$this->assertEquals('1.2.1', $modules[1]->getVersion());
8585
$this->assertEquals('1.2.2', $modules[2]->getVersion());

tests/unit/RemoteModuleLoaderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function testCanLoadLatestVersionByArchiveName()
7474
$module = $this->loader->loadLatestVersionByArchiveName('composer/autoload');
7575

7676
$this->assertEquals('composer/autoload', $module->getArchiveName());
77-
$this->assertEquals('1.4.0', $module->getVersion());
77+
$this->assertEquals('1.5.0', $module->getVersion());
7878
}
7979

8080
public function testCanLoadByArchiveNameAndVersion()

0 commit comments

Comments
 (0)