Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
poliorcetics committed Dec 2, 2020
1 parent 60bba6a commit fa4e760
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
12 changes: 7 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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)`.
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fa4e760

Please sign in to comment.