Skip to content

Commit

Permalink
fix: upgrade rphtml, fix > appears in a quoted attribute value will n…
Browse files Browse the repository at this point in the history
…ot parsed as expected.
  • Loading branch information
fefit committed Nov 23, 2022
1 parent 9a7245e commit 135ecfb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

0.2.1 版本后各个接口方法已经基本趋于稳定,后面将不会做大的调整。

## [0.5.8] - 2022-11-23

### 修复

- 升级 `rphtml`,修复标签带引号属性值中包含结束标签字符 `>` 会被错误解析的问题。

## [0.5.7] - 2022-11-10

### 变更
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "visdom"
version = "0.5.7"
version = "0.5.8"
edition = "2018"
description = "A html document syntax and operation library, use APIs similar to jquery, easy to use for web scraping and confused html."
keywords = ["html", "scrape", "jquery", "query", "selector"]
Expand All @@ -13,7 +13,7 @@ license = "MIT"
exclude = [".vscode/*.*", ".editorconfig", ".travis.yml", "src/main.rs", "performance/*.*"]

[dependencies]
rphtml = "0.5.6"
rphtml = "0.5.8"
lazy_static = "1.4.0"
thiserror = "1.0.24"
regex = "1.7.0"
Expand Down

0 comments on commit 135ecfb

Please sign in to comment.