From cf16f2b25b95ae47b5a587a2e0f210adbfe0cbe0 Mon Sep 17 00:00:00 2001 From: Conner Bachmann Date: Thu, 11 May 2023 12:42:12 +0200 Subject: [PATCH] chore(release): v5.3.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 2 +- src/module.ts | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb38b8fe..bc00864a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## v5.3.0 + + +### 🚀 Enhancements + + - Add Avif type support to DirectusThumbnailFormat (#141) + +### ❤️ Contributors + +- Alberto + ## v5.2.1 diff --git a/package.json b/package.json index 9246a6f1..d72afd48 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nuxt-directus", - "version": "5.2.1", + "version": "5.3.0", "license": "MIT", "repository": "https://github.com/intevel/nuxt-directus", "homepage": "https://nuxt-directus.netlify.app/", diff --git a/src/module.ts b/src/module.ts index 73324ed1..b432b02a 100644 --- a/src/module.ts +++ b/src/module.ts @@ -119,6 +119,7 @@ export default defineNuxtModule({ declare module '@nuxt/schema' { interface ConfigSchema { + directus?: ModuleOptions; publicRuntimeConfig?: { directus?: ModuleOptions; };