From a1949e27e3597035d5b34c3d583a425646b2bfa1 Mon Sep 17 00:00:00 2001 From: Alexis Bourget Date: Wed, 25 Nov 2020 18:21:02 +0100 Subject: [PATCH] Update to version 1.3.0 --- CHANGELOG.md | 2 +- Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9beaa08..a12194a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Version ?.?.? - ????-??-?? +# Version 1.3.0 - 2020-11-25 - `index.html#section` now correctly always link to `self`, not the current page (#34). diff --git a/Cargo.lock b/Cargo.lock index 02e7d93..5252ee0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,7 +82,7 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" [[package]] name = "cargo-intraconv" -version = "1.2.0" +version = "1.3.0" dependencies = [ "ansi_term", "argh", diff --git a/Cargo.toml b/Cargo.toml index ae408ea..7ceae26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-intraconv" -version = "1.2.0" +version = "1.3.0" authors = ["Alexis Bourget "] edition = "2018" description = "A simple helper to transform Markdown links to intra-doc links in Rust projects when appropriate." diff --git a/src/lib.rs b/src/lib.rs index 6a5587a..b941655 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -75,7 +75,7 @@ pub fn run(mut args: CliArgs) { ) .name() .to_string(); - + if args.paths.is_empty() || args.paths == &[Path::new("intraconv")] { args.paths.push(Path::new(".").into()); }