From 432f01e779c6c260bf8e597059e8d6b80c17194d Mon Sep 17 00:00:00 2001 From: OfficerHalf Date: Sat, 13 Nov 2021 08:18:09 -0500 Subject: [PATCH] build: release version 1.4.1 --- CHANGELOG.md | 6 ++++++ manifest.json | 2 +- package-lock.json | 2 +- package.json | 2 +- src/constants.ts | 2 +- versions.json | 1 + 6 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9db67d5..afe177a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 1.4.1 + +## Fixes + +- Remove some more extra console logs. Added a lint rule so this doesn't happen again. This is what happens when I code instead of going to sleep. + # 1.4.0 ## Features diff --git a/manifest.json b/manifest.json index d3992fb..ae22e85 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "auto-class", "name": "Auto Class", - "version": "1.4.0", + "version": "1.4.1", "minAppVersion": "0.12.12", "description": "Automatically apply CSS classes to the markdown view based on a note's path.", "author": "OfficerHalf", diff --git a/package-lock.json b/package-lock.json index aeffffd..b1d5a7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "auto-class", - "version": "1.4.0", + "version": "1.4.1", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 32951ad..447d4d3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "auto-class", - "version": "1.4.0", + "version": "1.4.1", "description": "Automatically apply CSS classes to the markdown view based on a note's path.", "main": "main.js", "scripts": { diff --git a/src/constants.ts b/src/constants.ts index 08aee6b..21d13c5 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -3,5 +3,5 @@ import { AutoClassPluginSettings } from './interfaces'; export const DEFAULT_SETTINGS: AutoClassPluginSettings = { paths: [{ path: 'Example Path/Subfolder/', classes: ['example-class'], scope: ClassPathScope.Preview }], - version: '1.4.0' + version: '1.4.1' }; diff --git a/versions.json b/versions.json index 78b7433..9da283c 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { + "1.4.1": "0.12.12", "1.4.0": "0.12.12", "1.3.0": "0.12.12", "1.2.1": "0.12.12",