From 8de5e5e2f1569c1157b6a3b23ea335d8ef47f70e Mon Sep 17 00:00:00 2001 From: Alexander Zamponi Date: Thu, 21 Jan 2021 13:34:23 +0100 Subject: [PATCH 1/2] Fixed wrong xml dir. --- src/Module.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Module.php b/src/Module.php index 7ee03c2..60f1b6e 100644 --- a/src/Module.php +++ b/src/Module.php @@ -25,7 +25,10 @@ public function onBootstrap($e): void // Add the default entity driver only if specified in configuration if ($options->getEnableDefaultEntities()) { $chain = $sm->get('doctrine.driver.orm_default'); - $chain->addDriver(new XmlDriver(__DIR__ . '/config/xml/lmcuserdoctrineorm'), 'LmcUserDoctrineORM\Entity'); + $chain->addDriver( + new XmlDriver(__DIR__ . '/../config/xml/lmcuserdoctrineorm'), + 'LmcUserDoctrineORM\Entity' + ); } } From 84a262a633f954069034142b926045047f976be6 Mon Sep 17 00:00:00 2001 From: Alexander Zamponi Date: Thu, 21 Jan 2021 13:55:50 +0100 Subject: [PATCH 2/2] added changelog --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a0c081a..86da005 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ All notable changes to this project will be documented in this file, in reverse chronological order by release. +## 3.0.1 - 2021-01-21 + +### Added + +- Nothing. + +### Deprecated + +- Nothing. + +### Removed + +- Nothing. + +### Fixed + +- Xml directory path. + + ## 3.0.0 - 2020-11-19 ### Added