-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCHANGELOG
More file actions
184 lines (113 loc) · 2.98 KB
/
CHANGELOG
File metadata and controls
184 lines (113 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
### v9.3.0
- Use thiserror for error handling.
### v9.2.2
- Fix case sensitivity in `ser_hexify_prefixed_upper`.
- Bump dependencies.
- Format code.
### v9.2.1
- Enable all features for docs.rs.
### v9.2.0
- Include examples in the lib.rs.
- Upgrade edition to 2024.
- Bump dependencies.
### v9.1.2
- Add `ser_bytes_stringify` and `de_bytes_destringify`.
### v9.1.1
- Integrate `serde_bytes`.
### v9.1.0
- Use reference instead of value in `Hexify` trait and related serialize functions.
### v9.0.0
- Expose more friendly APIs, `Hexify` and `DeHexify` traits.
- Un-public some tiny functions to encourage using `Hexify` and `DeHexify` traits.
- Improve docs.
- Restructure the code.
### v8.0.0
- Improve performance.
### v7.1.0
- Rename `se_hex` to `ser_hex`.
- Rename `se_hex_without_prefix` to `ser_hex_without_prefix`.
### v7.0.0
- Improve docs.
- Improve tests.
- Bump dependencies.
- Add `se_hex`, `se_hex_without_prefix`.
- Rename `de_hex2num` to `de_try_from_hex` and make it support more types.
- Remove `de_hex2bytes`.
### v6.2.3
- Add `slice2array_ref` and `slice2array_ref_unchecked`.
- Bump dependencies.
### v6.2.2
- Improve documentation.
### v6.2.1
- Add `prefix_with` and `suffix_with`.
- Bump dependencies.
### v6.2.0
- Adjust generics order.
- Bump dependencies.
### v6.1.0
- Improve expression.
- Improve `TryFromHex` and add `Hex`.
### v6.0.0
- Optimize algorithm.
- Bump dependencies.
### v5.1.0
- Rename error fields.
### v5.0.0
- Optimize algorithm.
- Improve documentation.
- Support `AsRef<T>` input.
- Add `hex2slice` and `hex2slice_unchecked`.
### v4.2.0
- Bump dependencies.
- Update CI.
- Update license.
### v4.1.0
- Mark `hex_bytes2hex_str_unchecked` as unsafe.
### v4.0.0
- Use `is_hex_ascii` to optimize performance.
- Add benchmark results.
- Add `hex_bytes2hex_str` and `hex_bytes2hex_str_unchecked`.
- Add fuzzing.
### v3.0.0
- Break `hex_into` into `hex_into` and `hex_n_into`.
- Break `hex_into_unchecked` into `hex_into_unchecked` and `hex_n_into_unchecked`.
### v2.0.2
- Bump dependencies.
- Update README.
- Update CI.
### v2.0.1
- Fix tests.
### v2.0.0
- Split `dyn_*` to `slice_*` and `vec_*`.
- Remove all the unsafe usage.
### v1.6.0
- Disable generic input. (people should know what are they going to do)
- Bump dependencies.
### v1.5.2
- Update documentation.
- Update code format.
- Bump dependencies.
### v1.5.1
- Update description.
### v1.5.0
- Revert *"Use `String` instead `&str` in `serde`"*.
- Bump dependencies.
- Rust edition 2021.
### v1.4.1
- Use `String` instead `&str` in `serde`.
### v1.4.0
- Bump `serde`.
- Add more documentation.
- Add more tests.
- Rename `hexd2num` to `de_hex2num`, `hexd2bytes` to `de_hex2bytes`.
### v1.3.3
- Allow explicit generic argument.
### v1.3.2
- Add `dyn_into`.
### v1.3.0
- Add `hex2array`, `hex_try_into` and `hex_into_unchecked`.
- Support `serde`.
### v1.2.0
- Deprecated macro `hex2array_unchecked`.
- Introduce function `hex2array_unchecked`.
- Require at least Rust `1.51.0`.