@@ -29,7 +29,7 @@ The crate starts conservative: validated avatar dimensions, bounded identity inp
2929
3030## Current Status
3131
32- The current crate version is ` 1.1.0 ` .
32+ The current crate version is ` 1.1.1 ` .
3333
3434Implemented now:
3535
@@ -104,9 +104,9 @@ to split it.
104104## Rust Version Support
105105
106106The minimum supported Rust version is Rust ` 1.90.0 ` . New deployments should
107- prefer the latest stable Rust; as of May 29 , 2026, that is Rust ` 1.96.0 ` .
107+ prefer the latest stable Rust; as of June 30 , 2026, that is Rust ` 1.96.1 ` .
108108
109- Compatibility evidence for ` 1.1.0 ` :
109+ Compatibility evidence for ` 1.1.1 ` :
110110
111111| Rust | Local Evidence |
112112| --- | --- |
@@ -117,6 +117,7 @@ Compatibility evidence for `1.1.0`:
117117| ` 1.94.0 ` | ✓ ` cargo check --features all-formats ` |
118118| ` 1.95.0 ` | ✓ ` cargo check --features all-formats ` |
119119| ` 1.96.0 ` | ✓ ` cargo check --features all-formats ` |
120+ | ` 1.96.1 ` | ✓ ` cargo check --features all-formats ` |
120121
121122Optional hash modes are mutually exclusive, so ` hashavatar ` cannot use a single
122123` --all-features ` evidence run. The ` 1.90.0 ` MSRV was also checked with
@@ -127,36 +128,36 @@ Optional hash modes are mutually exclusive, so `hashavatar` cannot use a single
127128
128129``` toml
129130[dependencies ]
130- hashavatar = " 1.1.0 "
131+ hashavatar = " 1.1.1 "
131132```
132133
133134Optional identity hash modes and extra raster encoders are disabled by default.
134135Hash modes are mutually exclusive, so enable at most one of ` blake3 ` or ` xxh3 ` :
135136
136137``` toml
137138[dependencies ]
138- hashavatar = { version = " 1.1.0 " , features = [" blake3" ] }
139+ hashavatar = { version = " 1.1.1 " , features = [" blake3" ] }
139140```
140141
141142Enable additional raster formats explicitly:
142143
143144``` toml
144145[dependencies ]
145- hashavatar = { version = " 1.1.0 " , features = [" png" , " jpeg" , " gif" ] }
146+ hashavatar = { version = " 1.1.1 " , features = [" png" , " jpeg" , " gif" ] }
146147```
147148
148149Or enable every optional raster encoder at once:
149150
150151``` toml
151152[dependencies ]
152- hashavatar = { version = " 1.1.0 " , features = [" all-formats" ] }
153+ hashavatar = { version = " 1.1.1 " , features = [" all-formats" ] }
153154```
154155
155156Enable string serialization/deserialization for public style enums:
156157
157158``` toml
158159[dependencies ]
159- hashavatar = { version = " 1.1.0 " , features = [" serde" ] }
160+ hashavatar = { version = " 1.1.1 " , features = [" serde" ] }
160161```
161162
162163Combine these as needed, for example ` features = ["blake3", "png", "serde"] ` .
@@ -519,7 +520,7 @@ your namespace style version when intentionally migrating output.
519520
520521``` toml
521522[dependencies ]
522- hashavatar = { version = " 1.1.0 " , features = [" blake3" ] }
523+ hashavatar = { version = " 1.1.1 " , features = [" blake3" ] }
523524```
524525
525526``` rust
@@ -547,7 +548,7 @@ assert!(svg.contains("alien avatar"));
547548
548549``` toml
549550[dependencies ]
550- hashavatar = { version = " 1.1.0 " , features = [" xxh3" ] }
551+ hashavatar = { version = " 1.1.1 " , features = [" xxh3" ] }
551552```
552553
553554``` rust
0 commit comments