diff --git a/CHANGELOG.md b/CHANGELOG.md
index 252b2e633a3171c41d016060266e027b71323822..153d1e45761afed8f27df62617e818770ea9b871 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+## [1.4.3] - 2020-06-03
+### Fixed
+- Path for require_once
+
 ## [1.4.2] - 2020-05-15
 ### Changed
 - Settings should open in default target
diff --git a/src/Plugin/WithoutNamespace/Plugin_Info.php b/src/Plugin/WithoutNamespace/Plugin_Info.php
index 0de62a48daabebb619ecaab072e5059b324d389a..8f1b544baef4a8a0a043b7633194b2f8a0a2cd13 100644
--- a/src/Plugin/WithoutNamespace/Plugin_Info.php
+++ b/src/Plugin/WithoutNamespace/Plugin_Info.php
@@ -7,7 +7,7 @@ if ( ! class_exists( 'WPDesk_Buildable' ) ) {
 	require_once __DIR__ . '/Buildable.php';
 }
 if ( ! class_exists( 'WPDesk_Has_Plugin_Info' ) ) {
-	require_once 'Has_Plugin_Info.php';
+	require_once __DIR__ . '/Has_Plugin_Info.php';
 }
 
 /**