Skip to content

Commit 0a98996

Browse files
committed
Update manifest for release.
1 parent 7e2baf5 commit 0a98996

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@
77
* @markdown-confluence/lib bumped from 3.0.4 to 3.0.0
88
* @markdown-confluence/mermaid-electron-renderer bumped from 3.0.4 to 3.0.0
99

10+
## [4.7.5](https://github.com/markdown-confluence/markdown-confluence/compare/obsidian-confluence-v4.7.4...obsidian-confluence-v4.7.5) (2023-04-30)
11+
12+
13+
### Bug Fixes
14+
15+
* Handle #hash links better for names that have spaces and handle internal links ([7ad345a](https://github.com/markdown-confluence/markdown-confluence/commit/7ad345af210e346517535faa7a08d801b1660ded))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @markdown-confluence/lib bumped from 4.7.4 to 4.7.5
23+
* @markdown-confluence/mermaid-electron-renderer bumped from 4.7.4 to 4.7.5
24+
1025
## [4.7.4](https://github.com/markdown-confluence/markdown-confluence/compare/obsidian-confluence-v4.7.3...obsidian-confluence-v4.7.4) (2023-04-29)
1126

1227

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"id": "confluence-integration",
33
"name": "Confluence Integration",
4-
"version": "4.7.4",
4+
"version": "4.7.5",
55
"minAppVersion": "1.0.0",
66
"description": "This plugin allows you to publish your notes to Confluence",
77
"author": "andymac4182",

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "obsidian-confluence",
3-
"version": "4.7.4",
3+
"version": "4.7.5",
44
"description": "This library allows you to publish your notes to Confluence",
55
"main": "main.js",
66
"type": "module",
@@ -32,8 +32,8 @@
3232
"react": "^16.14.0",
3333
"react-dom": "^16.14.0",
3434
"react-intl-next": "npm:react-intl@^5.18.1",
35-
"@markdown-confluence/lib": "4.7.4",
36-
"@markdown-confluence/mermaid-electron-renderer": "4.7.4"
35+
"@markdown-confluence/lib": "4.7.5",
36+
"@markdown-confluence/mermaid-electron-renderer": "4.7.5"
3737
},
3838
"resolutions": {
3939
"prosemirror-model": "1.14.3"

src/adaptors/obsidian.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default class ObsidianAdaptor implements LoaderAdaptor {
4040
if (!fileFM) {
4141
throw new Error("Missing File in Metadata Cache");
4242
}
43-
const frontMatter = fileFM.frontmatter; //TODO: How to handle this better??
43+
const frontMatter = fileFM.frontmatter;
4444

4545
if (
4646
(file.path.startsWith(this.settings.folderToPublish) &&

0 commit comments

Comments
 (0)