From 50b16bc45446c1d133380c3d7927d2a5093359f9 Mon Sep 17 00:00:00 2001
From: wize-wiz <9093559+wize-wiz@users.noreply.github.com>
Date: Thu, 17 Oct 2019 09:53:31 +0200
Subject: [PATCH] Move releases/changes to CHANGELOG.md
---
CHANGELOG.md | 29 +++++++++++++++++++++++++++++
README.md | 24 ------------------------
2 files changed, 29 insertions(+), 24 deletions(-)
create mode 100644 CHANGELOG.md
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..6da0d8b
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,29 @@
+## Nova Dependency Container
+
+
+
+### Releases
+
+ - [v1.2.7](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.7)
+ - Fix an index error in Nova 2.5.0 where the rules-set array requires a key fields attribute #86
+ - Support MorphTo controller #62,#85
+ - Moved releases/changes to `CHANGELOG.md`
+ - [v1.2.6](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.6)
+ - Fixes a problem where it should check if a model exist when creating a resource when it's impossible to satisfy dependencies
+ - [v1.2.5](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.5)
+ - Fixes a problem where Nova can't resolve custom ActionRequest [#82](https://github.com/epartment/nova-dependency-container/issues/82)
+ - [v1.2.4](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.4)
+ - Fixes a problem where fields with same names use previous validation rules when used in multiple containers [#81](https://github.com/epartment/nova-dependency-container/issues/81), [#60](https://github.com/epartment/nova-dependency-container/pull/60) (@melewski)
+ - [v1.2.3](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.3)
+ - Fixed belongs-to/morph-to as nested fields [#80](https://github.com/epartment/nova-dependency-container/issues/80)
+ - Added missing methods in validation rules
+ - [v1.2.2](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.2)
+ - fixed fields not resolving when using `displayUsingLabels`, `resolveUsing` or `displayUsing`. (@dbf)
+ - fixed action fields who do not return a collection (@bsormagec)
+ - added two new methods `onEmpty` and `onNullOrZero`. (@niektenhoopen, @dbf)
+ - changed the logic for dependency satisfaction where it is reversed
+ - changed `field` in two separate names; `field` and `property`, to avoid confusion when being used on a resource or component.
+ - [v1.2.1](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.1)
+ - fixed support for [BelongsTo](https://nova.laravel.com/docs/1.0/resources/relationships.html#belongsto) and [MorphTo](https://nova.laravel.com/docs/1.0/resources/relationships.html#morphto) fields (@mikaelpopowicz, @dbf)
+ - [v1.2.0](https://github.com/epartment/nova-dependency-container/releases/tag/1.2.0)
+ - working version for Laravel 5.8 | 6 and Nova 2.x. (@FastPointGaming, @spaceo, @cdbeaton, @yaroslawww)
diff --git a/README.md b/README.md
index 64922e0..42b9d51 100644
--- a/README.md
+++ b/README.md
@@ -137,30 +137,6 @@ NovaDependencyContainer::make([
-### Releases
-
-I'm going to abuse this README for versioning ...
-
- - v1.2.5
- - Fixes a problem where Nova can't resolve custom ActionRequest [#82](https://github.com/epartment/nova-dependency-container/issues/82)
- - v1.2.4
- - Fixes a problem where fields with same names use previous validation rules when used in multiple containers [#81](https://github.com/epartment/nova-dependency-container/issues/81), [#60](https://github.com/epartment/nova-dependency-container/pull/60) (@melewski)
- - v1.2.3
- - Fixed belongs-to/morph-to as nested fields [#80](https://github.com/epartment/nova-dependency-container/issues/80)
- - Added missing methods in validation rules
- - v1.2.2
- - fixed fields not resolving when using `displayUsingLabels`, `resolveUsing` or `displayUsing`. (@dbf)
- - fixed action fields who do not return a collection (@bsormagec)
- - added two new methods `onEmpty` and `onNullOrZero`. (@niektenhoopen, @dbf)
- - changed the logic for dependency satisfaction where it is reversed
- - changed `field` in two separate names; `field` and `property`, to avoid confusion when being used on a resource or component.
- - v1.2.1
- - fixed support for [BelongsTo](https://nova.laravel.com/docs/1.0/resources/relationships.html#belongsto) and [MorphTo](https://nova.laravel.com/docs/1.0/resources/relationships.html#morphto) fields (@mikaelpopowicz, @dbf)
- - v1.2.0
- - working version for Laravel 5.8 | 6 and Nova 2.x. (@FastPointGaming, @spaceo, @cdbeaton, @yaroslawww)
-
-
-
### License
The MIT License (MIT). Please see [License File](https://github.com/epartment/nova-dependency-container/blob/master/LICENSE.md) for more information.