diff --git a/CHANGES.md b/CHANGES.md index 4ebc1bc..1cf9d63 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,26 @@ # Changelog +## v0.4.0 (2020-12-23) + +### Fixes + +* Correct relative links within embedded notes. [Nick Groenen] + + Links within an embedded note would point to other local resources + relative to the filesystem location of the note being embedded. + + When a note inside a different directory would embed such a note, these + links would point to invalid locations. + + Now these links are calculated relative to the top note, which ensures + these links will point to the right path. + +### Other + +* Add brief library documentation to all public types and functions. [Nick Groenen] + + + ## v0.3.0 (2020-12-21) ### New diff --git a/Cargo.lock b/Cargo.lock index 8ad4ec5..982181b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -291,7 +291,7 @@ dependencies = [ [[package]] name = "obsidian-export" -version = "0.3.0" +version = "0.4.0" dependencies = [ "eyre", "gumdrop", diff --git a/Cargo.toml b/Cargo.toml index 86c547e..0ff3dd0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obsidian-export" -version = "0.3.0" +version = "0.4.0" 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 780518d..ea7702b 100644 --- a/book/book-src/CHANGES.md +++ b/book/book-src/CHANGES.md @@ -1,5 +1,24 @@ # Changelog +## v0.4.0 (2020-12-23) + +### Fixes + +* Correct relative links within embedded notes. \[Nick Groenen] + + Links within an embedded note would point to other local resources + relative to the filesystem location of the note being embedded. + + When a note inside a different directory would embed such a note, these + links would point to invalid locations. + + Now these links are calculated relative to the top note, which ensures + these links will point to the right path. + +### Other + +* Add brief library documentation to all public types and functions. \[Nick Groenen] + ## v0.3.0 (2020-12-21) ### New