Skip to content

Commit

Permalink
prepare next feature release
Browse files Browse the repository at this point in the history
  • Loading branch information
llaville committed Jan 22, 2022
1 parent 85bdb21 commit 53376e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ using the [Keep a CHANGELOG](http://keepachangelog.com) principles.

## [Unreleased]

## [1.4.0] - 2022-01-22

### Added

- `about` command to display current long version and more information about this package.
Expand Down Expand Up @@ -267,7 +269,8 @@ Second prototype version with following contents (+40 extensions, +5 tools):
First prototype version with following contents:
[ROADMAP](https://github.com/llaville/docker-php-toolbox/blob/e3159c67983107b525270f4770ef8483dd065312/ROADMAP.md)

[unreleased]: https://github.com/llaville/docker-php-toolbox/compare/1.3.0...HEAD
[unreleased]: https://github.com/llaville/docker-php-toolbox/compare/1.4.0...HEAD
[1.4.0]: https://github.com/llaville/docker-php-toolbox/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/llaville/docker-php-toolbox/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/llaville/docker-php-toolbox/compare/1.1.1...1.2.0
[1.1.1]: https://github.com/llaville/docker-php-toolbox/compare/1.1.0...1.1.1
Expand Down
2 changes: 1 addition & 1 deletion src/DependencyInjection/ContainerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class ContainerFactory
public function create(string $set = 'default'): ContainerInterface
{
$containerBuilder = new ContainerBuilder();
$loader = new PhpFileLoader($containerBuilder, new FileLocator(__DIR__ . '/../../config/set'));
$loader = new PhpFileLoader($containerBuilder, new FileLocator(dirname(__DIR__, 2) . '/config/set'));
$loader->load($set . '.php');
$containerBuilder->compile();
return $containerBuilder;
Expand Down

0 comments on commit 53376e8

Please sign in to comment.