Skip to content

Commit

Permalink
Add release v3.4.1 CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
antonkomarev committed Feb 29, 2020
1 parent 1eb84f4 commit aabe5f5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ All notable changes to `cybercog/laravel-optimus` will be documented in this fil

## [Unreleased]

## [3.4.1] - 2020-02-29

## Fixed

- ([#22]) Handle string route values in `resolveRouteBinding` method

## [3.4.0] - 2019-09-04

### Added
Expand Down Expand Up @@ -63,7 +69,8 @@ All notable changes to `cybercog/laravel-optimus` will be documented in this fil

Initial release

[Unreleased]: https://github.com/cybercog/laravel-optimus/compare/3.4.0...master
[Unreleased]: https://github.com/cybercog/laravel-optimus/compare/3.4.1...master
[3.4.1]: https://github.com/cybercog/laravel-optimus/compare/3.4.0...3.4.1
[3.4.0]: https://github.com/cybercog/laravel-optimus/compare/3.3.0...3.4.0
[3.3.0]: https://github.com/cybercog/laravel-optimus/compare/3.2.0...3.3.0
[3.2.0]: https://github.com/cybercog/laravel-optimus/compare/3.1.0...3.2.0
Expand All @@ -72,6 +79,7 @@ Initial release
[2.1.0]: https://github.com/cybercog/laravel-optimus/compare/2.0.0...2.1.0
[2.0.0]: https://github.com/cybercog/laravel-optimus/compare/1.0.0...2.0.0

[#22]: https://github.com/cybercog/laravel-optimus/pull/22
[#20]: https://github.com/cybercog/laravel-optimus/pull/20
[#15]: https://github.com/cybercog/laravel-optimus/pull/15
[#14]: https://github.com/cybercog/laravel-optimus/pull/14
Expand Down
2 changes: 1 addition & 1 deletion src/Providers/OptimusServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected function setupConfig()
protected function bindFactory()
{
$this->app->singleton('optimus.factory', function () {
return new OptimusFactory;
return new OptimusFactory();
});

$this->app->alias('optimus.factory', OptimusFactory::class);
Expand Down

0 comments on commit aabe5f5

Please sign in to comment.