From 5ba795e44a68bb0259a8d8c37fd05d24c84d3a67 Mon Sep 17 00:00:00 2001 From: mProjectsCode Date: Wed, 1 Jun 2022 15:45:26 +0200 Subject: [PATCH] bump version --- manifest.json | 2 +- src/utils/Utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/manifest.json b/manifest.json index 86d0d3f..05b08e5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-media-db-plugin", "name": "Media DB Plugin", - "version": "0.1.8", + "version": "0.1.11", "minAppVersion": "0.14.0", "description": "A plugin that can query multiple APIs for movies, series, anime, games, music and wiki articles, and import them into your vault. ", "author": "Moritz Jung", diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 7c76315..25fb06e 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -4,7 +4,7 @@ import {MediaTypeModel} from '../models/MediaTypeModel'; export const pluginName: string = 'obsidian-media-db-plugin'; export const contactEmail: string = 'm.projects.code@gmail.com'; export const mediaDbTag: string = 'mediaDB'; -export const mediaDbVersion: string = '0.1.8'; +export const mediaDbVersion: string = '0.1.11'; export const debug: boolean = false; export function wrapAround(value: number, size: number): number {