Skip to content

Commit c652df6

Browse files
authored
Release v5.0.0 (#29)
1 parent aa01a00 commit c652df6

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

CHANGELOG

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## v5.0.0
2+
- Optimize algorithm.
3+
- Improve documentation.
4+
- Support `AsRef<T>` input.
5+
- Add `hex2slice` and `hex2slice_unchecked`.
6+
17
## v4.2.0
28
- Bump dependencies.
39
- Update CI.
@@ -33,7 +39,7 @@
3339
- Bump dependencies.
3440

3541
## v1.5.2
36-
- Update documents.
42+
- Update documentation.
3743
- Update code format.
3844
- Bump dependencies.
3945

@@ -50,7 +56,7 @@
5056

5157
## v1.4.0
5258
- Bump `serde`.
53-
- Add more documents.
59+
- Add more documentation.
5460
- Add more tests.
5561
- Rename `hexd2num` to `de_hex2num`, `hexd2bytes` to `de_hex2bytes`.
5662

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-4
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,7 @@ license = "Apache-2.0/GPL-3.0"
1818
name = "array-bytes"
1919
readme = "README.md"
2020
repository = "https://github.com/hack-ink/array-bytes"
21-
version = "4.2.0"
22-
23-
[badges]
24-
maintenance = { status = "actively-developed" }
21+
version = "5.0.0"
2522

2623
[dependencies]
2724
serde = { version = "1.0", optional = true, default-features = false }

fuzz/Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ edition = "2021"
44
metadata = { cargo-fuzz = true }
55
name = "array-bytes-fuzz"
66
publish = false
7-
version = "4.2.0"
7+
version = "5.0.0"
88

99
[dependencies]
10-
array-bytes = { version = "4.2", path = ".." }
10+
array-bytes = { version = "5.0", path = ".." }
1111
libfuzzer-sys = { version = "0.4" }
1212

1313
[workspace]

0 commit comments

Comments
 (0)