Skip to content

Commit b6cca83

Browse files
authored
Merge pull request #23 from b41sh/bump-0.2.3
Bump to version 0.2.3
2 parents eeb853b + 85bdd17 commit b6cca83

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
## [v0.2.3] - 2023-07-10
2+
3+
### Fixed
4+
5+
- Fix: fix parse json path name with escaped characters. (#21)
6+
- Fix: Fix some special characters display errors. (#18)
7+
- Fix: Support parsing Unicode characters enclosed in brackets. (#17)
8+
- Fix: json `to_string` function adds backslash for escaped characters. (#16)
9+
- Fix: fix parse UTF-8 characters. (#15)
10+
11+
### Added
12+
13+
- chore: implement From trait with owned JsonValue for Value. (#22)
14+
- Feat: Add function `convert_to_comparable`, `rand_value`. (#20)
15+
- Create publish.yaml. (#19)
16+
117
## [v0.2.2] - 2023-05-06
218

319
### Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ keywords = ["json", "jsonb", "jsonpath"]
2222
license = "Apache-2.0"
2323
name = "jsonb"
2424
repository = "https://github.com/datafuselabs/jsonb"
25-
version = "0.2.2"
25+
version = "0.2.3"
2626
rust-version = "1.68"
2727

2828
[dependencies]

src/functions.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,6 @@ fn escape_scalar_string(value: &[u8], start: usize, end: usize, json: &mut Strin
10471047
let c = match value[i] {
10481048
0x5C => "\\\\",
10491049
0x22 => "\\\"",
1050-
0x2F => "\\/",
10511050
0x08 => "\\b",
10521051
0x0C => "\\f",
10531052
0x0A => "\\n",

0 commit comments

Comments
 (0)