Skip to content

Commit fa4e760

Browse files
committed
Update changelog
1 parent 60bba6a commit fa4e760

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# Version 1.4.0 - 2020-12-02
22

3-
- Read `intraconv.toml` by default when no ignore file is given (#36).
4-
- Correctly detect ignored links for long links (#38).
5-
- Ignore `primitive.Type.html` links since transforming them is wrong most of
6-
the time (#35).
3+
- Feature: Read `intraconv.toml` by default when no ignore file is given (#36).
4+
- Fix: Ignore `primitive.Type.html` links since transforming them is wrong most
5+
of the time (#35).
6+
- Fix: Properly handle directories when they are given explicitely in a
7+
workspace (no issue).
8+
- Fix: Correctly detect ignored links for long links (#38).
79
- Fix: use `--ignore-file` instead of `----ignore-file` (#37).
810

911
# Version 1.3.0 - 2020-11-25
@@ -37,7 +39,7 @@
3739

3840
## Internals
3941

40-
The internals of the crate have been extensively rewritten. They now use a
42+
The internals of the crate have been extensively rewritten. They now use a
4143
cleaner link parser that is more safe and more extensible.
4244

4345
This was made necessary by #21, which asked for the support of `[name](link)`.

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -72,24 +72,24 @@ cargo intraconv
7272
cargo intraconv path/to/std/file.rs
7373

7474
# Specifying the root crate.
75-
cargo intraconv path/to/core/file.rs -c core
75+
cargo intraconv path/to/core/file.rs -c core
7676

7777
# Applying the changes.
78-
cargo intraconv path/to/std/file.rs -a
78+
cargo intraconv path/to/std/file.rs -a
7979

8080
# Disambiguate links by prefixing them with their rustdoc group ('type@', ...).
81-
cargo intraconv path/to/my/file.rs -d
81+
cargo intraconv path/to/my/file.rs -d
8282

8383
# Do not transform favored links to intra-doc links (see below for more).
84-
cargo intravonc path/to/my/file.rs -f
85-
84+
cargo intravonc path/to/my/file.rs -f
85+
8686
# Do not display changes, only errors.
87-
cargo intraconv path/to/my/file.rs -q
87+
cargo intraconv path/to/my/file.rs -q
8888

8989
# Give a file containing links to ignore.
90-
#
90+
#
9191
# Note: `intraconv.toml` is read by default when present.
92-
cargo intraconv path/to/my/file.rs -i intraconv.toml
92+
cargo intraconv path/to/my/file.rs -i intraconv.toml
9393
```
9494

9595
It is possible to give multiple paths to files or directories. When searching

0 commit comments

Comments
 (0)