diff --git a/CHANGELOG.md b/CHANGELOG.md
index 847a7a2..6af7960 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+
+# [3.0.1](https://github.com/atomastic/registry) (2021-08-02)
+* fix issue with creating macros
+
# [3.0.0](https://github.com/atomastic/registry) (2021-02-20)
* Move to PHP 7.4
diff --git a/composer.json b/composer.json
index b8cab84..8febfa0 100644
--- a/composer.json
+++ b/composer.json
@@ -18,8 +18,7 @@
],
"require": {
"php": "^7.4 || ^8.0",
- "atomastic/arrays": "^3.0",
- "atomastic/macroable": "^2.0"
+ "atomastic/arrays": "^3.0"
},
"autoload":{
"psr-4": {
diff --git a/src/Registry.php b/src/Registry.php
index 722ed22..b83b5f8 100644
--- a/src/Registry.php
+++ b/src/Registry.php
@@ -5,12 +5,9 @@
namespace Atomastic\Registry;
use Atomastic\Arrays\Arrays;
-use Atomastic\Macroable\Macroable;
class Registry extends Arrays
{
- use Macroable;
-
/**
* Registry instance
*/