diff --git a/CHANGES.md b/CHANGES.md index d405e9c..88e634e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,17 @@ # Changelog +## v0.5.1 (2021-01-10) + +### Fixes + +* Find uppercased notes when referenced with lowercase. [Nick Groenen] + + This commit fixes a bug where, if a note contained uppercase characters + (for example `Note.md`) but was referred to using lowercase + (`[[note]]`), that note would not be found. + + + ## v0.5.0 (2021-01-05) ### New diff --git a/Cargo.lock b/Cargo.lock index a4cea8a..c396811 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -297,7 +297,7 @@ dependencies = [ [[package]] name = "obsidian-export" -version = "0.5.0" +version = "0.5.1" dependencies = [ "eyre", "gumdrop", diff --git a/Cargo.toml b/Cargo.toml index bd8a0de..efecf1c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obsidian-export" -version = "0.5.0" +version = "0.5.1" authors = ["Nick Groenen "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/book/book-src/CHANGES.md b/book/book-src/CHANGES.md index 7c60779..a7e5ef6 100644 --- a/book/book-src/CHANGES.md +++ b/book/book-src/CHANGES.md @@ -1,5 +1,15 @@ # Changelog +## v0.5.1 (2021-01-10) + +### Fixes + +* Find uppercased notes when referenced with lowercase. \[Nick Groenen] + + This commit fixes a bug where, if a note contained uppercase characters + (for example `Note.md`) but was referred to using lowercase + (`[[note]]`), that note would not be found. + ## v0.5.0 (2021-01-05) ### New