Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/zend-expressive-router-rc4' into release-3.0.0
Browse files Browse the repository at this point in the history
Close #51
  • Loading branch information
weierophinney committed Mar 7, 2018
2 parents ab9667c + 95954c4 commit 43fac9a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 8 deletions.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,29 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release.

## 3.0.0rc4 - 2018-03-07

### Added

- Nothing.

### Changed

- [#51](https://github.com/zendframework/zend-expressive-fastroute/pull/51)
updates the minimum supported version of zend-expressive-router to 3.0.0rc4.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Nothing.

## 3.0.0rc3 - 2018-03-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -26,7 +26,7 @@
"nikic/fast-route": "^1.2",
"psr/container": "^1.0",
"psr/http-message": "^1.0.1",
"zendframework/zend-expressive-router": "^3.0.0rc3",
"zendframework/zend-expressive-router": "^3.0.0rc4",
"zendframework/zend-stdlib": "^2.0 || ^3.1"
},
"require-dev": {
Expand Down
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion test/FastRouteRouterTest.php
Expand Up @@ -334,7 +334,7 @@ public function testMatchFailureNotDueToHttpMethodReturnsGenericRouteFailureResu
$this->assertInstanceOf(RouteResult::class, $result);
$this->assertTrue($result->isFailure());
$this->assertFalse($result->isMethodFailure());
$this->assertSame(['*'], $result->getAllowedMethods());
$this->assertSame(Route::HTTP_METHOD_ANY, $result->getAllowedMethods());
}

public function generatedUriProvider()
Expand Down

0 comments on commit 43fac9a

Please sign in to comment.