Release v0.5.1

This commit is contained in:
Nick Groenen 2021-01-10 19:47:14 +01:00
parent e6fc611b58
commit 63186b4370
No known key found for this signature in database
GPG Key ID: 4F0AD019928AE098
4 changed files with 24 additions and 2 deletions

View File

@ -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

2
Cargo.lock generated
View File

@ -297,7 +297,7 @@ dependencies = [
[[package]]
name = "obsidian-export"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"eyre",
"gumdrop",

View File

@ -1,6 +1,6 @@
[package]
name = "obsidian-export"
version = "0.5.0"
version = "0.5.1"
authors = ["Nick Groenen <nick@groenen.me>"]
edition = "2018"
license = "MIT OR Apache-2.0"

View File

@ -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