Skip to content

Commit

Permalink
chore(release): 0.6.2
Browse files Browse the repository at this point in the history
liamcain committed Apr 16, 2022
1 parent 08fff95 commit 5a95e99
Showing 3 changed files with 33 additions and 12 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Changelog

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.6.2](https://github-personal/liamcain/obsidian-creases/compare/0.6.1...0.6.2) (2022-04-16)


### Bug Fixes

* iron out creases should not remove newlines ([08fff95](https://github-personal/liamcain/obsidian-creases/commit/08fff953b1c62510dfee2642fd0e9943ad50f1d3))
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"id": "creases",
"name": "Creases",
"description": "Tools for efficiently folding markdown sections in Obsidian",
"version": "0.6.1",
"version": "0.6.2",
"author": "Liam Cain",
"authorUrl": "https://github.com/liamcain/",
"isDesktopOnly": false,
33 changes: 22 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
{
"name": "obsidian-creases",
"version": "0.6.1",
"version": "0.6.2",
"description": "Configurable folding within Obsidian",
"author": "liamcain",
"main": "main.js",
"license": "MIT",
"scripts": {
"lint": "eslint . --ext .ts",
"dev": "node --experimental-json-modules esbuild.config.mjs",
"build": "yarn run lint && node --experimental-json-modules esbuild.config.mjs production"
"build": "yarn run lint && node --experimental-json-modules esbuild.config.mjs production",
"release": "standard-version"
},
"standard-version": {
"t": ""
},
"peerDependencies": {
"@codemirror/language": "0.19.x",
@@ -19,23 +23,30 @@
"lodash": "4.17.21"
},
"devDependencies": {
"builtin-modules": "^3.2.0",
"@codemirror/language": "^0.19.3",
"@codemirror/rangeset": "^0.19.1",
"@codemirror/view": "^0.19.7",
"@codemirror/basic-setup": "^0.19.0",
"@codemirror/buildhelper": "^0.1.0",
"@codemirror/lang-css": "^0.19.3",
"dotenv": "16.0.0",
"esbuild": "0.13.12",
"@types/node": "^16.11.6",
"@codemirror/language": "^0.19.3",
"@codemirror/rangeset": "^0.19.1",
"@codemirror/view": "^0.19.7",
"@types/lodash": "4.14.179",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"builtin-modules": "^3.2.0",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.0",
"esbuild": "0.13.12",
"eslint": "8.3.0",
"monkey-around": "2.3.0",
"obsidian": "0.13.26",
"typescript": "4.5.2",
"tslib": "2.3.1"
"standard-version": "^9.3.2",
"tslib": "2.3.1",
"typescript": "4.5.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}

0 comments on commit 5a95e99

Please sign in to comment.