Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- checkout
- run: cargo --version
- run: cargo build
- run: cargo build --workspace
- run: cargo test
- run:
name: Install tools
Expand All @@ -30,8 +30,8 @@ jobs:
steps:
- checkout
- run: cargo --version
- run: cargo build --features=css
- run: cargo test --features=css
- run: cargo build --features=css,css_ext --workspace
- run: cargo test --features=css,css_ext
build-1-85:
docker:
- image: cimg/rust:1.85
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ Possible log types:
- `[fixed]` for any bug fixes.
- `[security]` to invite users to upgrade in case of vulnerabilities.

### 0.17.0

- [changed] Split `html2text` example into `html2text-cli` crate
- [fixed] A possible panic when syntax-highlighting
- [changed] Update html5ever to 0.39.0

### 0.16.7

- [added] Support `<b>` tags as bold (thanks amir)
Expand Down
Loading
Loading