From ca39ac2976d4a982658bd26a5514d6395941c5d1 Mon Sep 17 00:00:00 2001 From: Zach Raines Date: Fri, 18 Feb 2022 13:27:44 -0500 Subject: [PATCH] chore(release): 0.3.0 --- CHANGELOG.md | 19 +++++++++++++++++++ manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 4 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9eb7182..b21a681 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,25 @@ 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. +## [0.3.0](https://github.com/raineszm/obsidian-latex-environments/compare/0.2.1...0.3.0) (2022-02-18) + + +### ⚠ BREAKING CHANGES + +* **codemirror:** Some behavior may differ from previous versions as the backend was completely rewritten. Fixes #17 + +### Features + +* **codemirror:** port to using obsidian's codemirror version abstraction ([ab10739](https://github.com/raineszm/obsidian-latex-environments/commit/ab107390e0e2d3e520e40a5939d83fc5627bb6f6)) + + +### Bug Fixes + +* **cursor:** set cursor position when changing environment ([65bf772](https://github.com/raineszm/obsidian-latex-environments/commit/65bf7725fed81369f621b25bfdabe9d8b2d3cdfa)) +* **delete environment:** fix trimming of environment contents when deleting environment ([ac7dedc](https://github.com/raineszm/obsidian-latex-environments/commit/ac7dedc2f5b20afa50c11a4c319de6c39d0d0486)) +* **whitespace:** fix newlines when creating a new environment ([d08bc4a](https://github.com/raineszm/obsidian-latex-environments/commit/d08bc4a3181059b750cab505d2693894bcc758bf)) +* **whitespace:** remove extraneous whitespace when deleting and environment ([2320564](https://github.com/raineszm/obsidian-latex-environments/commit/2320564e606b3942a18d5f0fcd560e7b470230b2)) + ### [0.2.1](https://github.com/raineszm/obsidian-latex-environments/compare/0.2.0...0.2.1) (2020-12-17) diff --git a/manifest.json b/manifest.json index e7d881a..02074b5 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "obsidian-latex-environments", "name": "Latex Environments", - "version": "0.3.0-1", + "version": "0.3.0", "description": "Allows to quickly insert and change latex environments within math environments.", "author": "Zach Raines", "authorUrl": "https://github.com/raineszm/obsidian-latex-environments", diff --git a/package.json b/package.json index 437ec5f..6c33c51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "obsidian-latex-environments", - "version": "0.3.0-1", + "version": "0.3.0", "description": "Quickly insert and change latex environments within math blocks in Obsidian.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index fcea85c..c3dcb7b 100644 --- a/versions.json +++ b/versions.json @@ -6,5 +6,6 @@ "0.2.0": "0.9.21", "0.2.1": "0.9.21", "0.3.0-0": "0.11.11", - "0.3.0-1": "0.11.11" + "0.3.0-1": "0.11.11", + "0.3.0": "0.11.11" }