diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a53e7a..d434fd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,11 @@ # Version 1.4.0 - 2020-12-02 -- Read `intraconv.toml` by default when no ignore file is given (#36). -- Correctly detect ignored links for long links (#38). -- Ignore `primitive.Type.html` links since transforming them is wrong most of - the time (#35). +- Feature: Read `intraconv.toml` by default when no ignore file is given (#36). +- Fix: Ignore `primitive.Type.html` links since transforming them is wrong most + of the time (#35). +- Fix: Properly handle directories when they are given explicitely in a + workspace (no issue). +- Fix: Correctly detect ignored links for long links (#38). - Fix: use `--ignore-file` instead of `----ignore-file` (#37). # Version 1.3.0 - 2020-11-25 @@ -37,7 +39,7 @@ ## Internals -The internals of the crate have been extensively rewritten. They now use a +The internals of the crate have been extensively rewritten. They now use a cleaner link parser that is more safe and more extensible. This was made necessary by #21, which asked for the support of `[name](link)`. diff --git a/README.md b/README.md index 0a64513..8d615f7 100644 --- a/README.md +++ b/README.md @@ -72,24 +72,24 @@ cargo intraconv cargo intraconv path/to/std/file.rs # Specifying the root crate. -cargo intraconv path/to/core/file.rs -c core +cargo intraconv path/to/core/file.rs -c core # Applying the changes. -cargo intraconv path/to/std/file.rs -a +cargo intraconv path/to/std/file.rs -a # Disambiguate links by prefixing them with their rustdoc group ('type@', ...). -cargo intraconv path/to/my/file.rs -d +cargo intraconv path/to/my/file.rs -d # Do not transform favored links to intra-doc links (see below for more). -cargo intravonc path/to/my/file.rs -f - +cargo intravonc path/to/my/file.rs -f + # Do not display changes, only errors. -cargo intraconv path/to/my/file.rs -q +cargo intraconv path/to/my/file.rs -q # Give a file containing links to ignore. -# +# # Note: `intraconv.toml` is read by default when present. -cargo intraconv path/to/my/file.rs -i intraconv.toml +cargo intraconv path/to/my/file.rs -i intraconv.toml ``` It is possible to give multiple paths to files or directories. When searching