Skip to content

Commit 53376e8

Browse files
committed
prepare next feature release
1 parent 85bdb21 commit 53376e8

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ using the [Keep a CHANGELOG](http://keepachangelog.com) principles.
77

88
## [Unreleased]
99

10+
## [1.4.0] - 2022-01-22
11+
1012
### Added
1113

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

270-
[unreleased]: https://github.com/llaville/docker-php-toolbox/compare/1.3.0...HEAD
272+
[unreleased]: https://github.com/llaville/docker-php-toolbox/compare/1.4.0...HEAD
273+
[1.4.0]: https://github.com/llaville/docker-php-toolbox/compare/1.3.0...1.4.0
271274
[1.3.0]: https://github.com/llaville/docker-php-toolbox/compare/1.2.0...1.3.0
272275
[1.2.0]: https://github.com/llaville/docker-php-toolbox/compare/1.1.1...1.2.0
273276
[1.1.1]: https://github.com/llaville/docker-php-toolbox/compare/1.1.0...1.1.1

src/DependencyInjection/ContainerFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ final class ContainerFactory
2121
public function create(string $set = 'default'): ContainerInterface
2222
{
2323
$containerBuilder = new ContainerBuilder();
24-
$loader = new PhpFileLoader($containerBuilder, new FileLocator(__DIR__ . '/../../config/set'));
24+
$loader = new PhpFileLoader($containerBuilder, new FileLocator(dirname(__DIR__, 2) . '/config/set'));
2525
$loader->load($set . '.php');
2626
$containerBuilder->compile();
2727
return $containerBuilder;

0 commit comments

Comments
 (0)