From e7486fa962bc0083d6b624753e8b6f197cc29271 Mon Sep 17 00:00:00 2001 From: Nick Groenen Date: Fri, 24 Sep 2021 12:01:40 +0200 Subject: [PATCH] Release v21.9.1 --- CHANGES.md | 39 +++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 40 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 81 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 0fc5726..ef592b4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,44 @@ # Changelog +## v21.9.1 (2021-09-24) + +### Changes + +* Treat SVG files as embeddable images. [Narayan Sainaney] + + This will ensure SVG files are included as an image when using `![[foo.svg]]` syntax, as opposed to only being linked to. + +### Other + +* Bump pulldown-cmark-to-cmark from 6.0.2 to 6.0.3. [dependabot[bot]] + + Bumps [pulldown-cmark-to-cmark](https://github.com/Byron/pulldown-cmark-to-cmark) from 6.0.2 to 6.0.3. + - [Release notes](https://github.com/Byron/pulldown-cmark-to-cmark/releases) + - [Changelog](https://github.com/Byron/pulldown-cmark-to-cmark/blob/main/CHANGELOG.md) + - [Commits](https://github.com/Byron/pulldown-cmark-to-cmark/compare/v6.0.2...v6.0.3) + + --- + updated-dependencies: + - dependency-name: pulldown-cmark-to-cmark + dependency-type: direct:production + update-type: version-update:semver-patch + ... + +* Bump serde_yaml from 0.8.20 to 0.8.21. [dependabot[bot]] + + Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.20 to 0.8.21. + - [Release notes](https://github.com/dtolnay/serde-yaml/releases) + - [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.20...0.8.21) + + --- + updated-dependencies: + - dependency-name: serde_yaml + dependency-type: direct:production + update-type: version-update:semver-patch + ... + + + ## v21.9.0 (2021-09-12) > This release switches to a [calendar versioning scheme](https://calver.org/overview.html). diff --git a/Cargo.lock b/Cargo.lock index ba08817..3c4486e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -313,7 +313,7 @@ dependencies = [ [[package]] name = "obsidian-export" -version = "21.9.0" +version = "21.9.1" dependencies = [ "eyre", "gumdrop", diff --git a/Cargo.toml b/Cargo.toml index ff18890..b0d5400 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "obsidian-export" -version = "21.9.0" +version = "21.9.1" authors = ["Nick Groenen "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/README.md b/README.md index ff75c98..349a11b 100644 --- a/README.md +++ b/README.md @@ -253,6 +253,46 @@ Unless you explicitly state otherwise, any contribution intentionally submitted # Changelog +## v21.9.1 (2021-09-24) + +### Changes + +* Treat SVG files as embeddable images. \[Narayan Sainaney\] + + This will ensure SVG files are included as an image when using `![[foo.svg]]` syntax, as opposed to only being linked to. + +### Other + +* Bump pulldown-cmark-to-cmark from 6.0.2 to 6.0.3. \[dependabot\[bot\]\] + + Bumps [pulldown-cmark-to-cmark](https://github.com/Byron/pulldown-cmark-to-cmark) from 6.0.2 to 6.0.3. + + * [Release notes](https://github.com/Byron/pulldown-cmark-to-cmark/releases) + * [Changelog](https://github.com/Byron/pulldown-cmark-to-cmark/blob/main/CHANGELOG.md) + * [Commits](https://github.com/Byron/pulldown-cmark-to-cmark/compare/v6.0.2...v6.0.3) + --- + + updated-dependencies: + + * dependency-name: pulldown-cmark-to-cmark + dependency-type: direct:production + update-type: version-update:semver-patch + ... +* Bump serde_yaml from 0.8.20 to 0.8.21. \[dependabot\[bot\]\] + + Bumps [serde_yaml](https://github.com/dtolnay/serde-yaml) from 0.8.20 to 0.8.21. + + * [Release notes](https://github.com/dtolnay/serde-yaml/releases) + * [Commits](https://github.com/dtolnay/serde-yaml/compare/0.8.20...0.8.21) + --- + + updated-dependencies: + + * dependency-name: serde_yaml + dependency-type: direct:production + update-type: version-update:semver-patch + ... + ## v21.9.0 (2021-09-12) >