From ac153d0c583427cb5cc6d495038b380bc2f42b08 Mon Sep 17 00:00:00 2001 From: Mike Bronner Date: Thu, 3 Sep 2020 14:43:58 +0000 Subject: [PATCH] Added max version constraint due to Nova 3.8.4 having breaking changes. --- CHANGELOG.md | 4 ++++ README.md | 7 +++++++ composer.json | 3 ++- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fc7332..6f5fed4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [0.2.1] - 2020-09-03 +### Added +- max version constraint due to Nova 3.8.4 having breaking changes. + ## [0.2.0] - 2020-08-17 ### Fixed - paths for default leaflet image assets. diff --git a/README.md b/README.md index 966ca72..83689dc 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,13 @@ ## Supporting This Package This is an MIT-licensed open source project with its ongoing development made possible by the support of the community. If you'd like to support this, and our other packages, please consider [becoming a backer or sponsor on Patreon](https://www.patreon.com/mikebronner). +## Requirements +```diff +- note that this package is not compatible with Nova 3.8.4 and as such requires a lower version to be used until a solution can be found. +``` +- Laravel 7.0+ +- Nova <3.8.4 + ## Installation 1. Install the package: ```sh diff --git a/composer.json b/composer.json index c5c9d06..6873572 100644 --- a/composer.json +++ b/composer.json @@ -13,7 +13,8 @@ } ], "require": { - "laravel/nova": "*", + "illuminate/support": "^7.0", + "laravel/nova": "<3.8.4", "symfony/thanks": "^1.1" }, "autoload": {