@@ -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.0.4 ` .
32+ The current crate version is ` 1.1.0 ` .
3333
3434Implemented now:
3535
@@ -106,7 +106,7 @@ to split it.
106106The minimum supported Rust version is Rust ` 1.90.0 ` . New deployments should
107107prefer the latest stable Rust; as of May 29, 2026, that is Rust ` 1.96.0 ` .
108108
109- Compatibility evidence for ` 1.0.4 ` :
109+ Compatibility evidence for ` 1.1.0 ` :
110110
111111| Rust | Local Evidence |
112112| --- | --- |
@@ -127,36 +127,36 @@ Optional hash modes are mutually exclusive, so `hashavatar` cannot use a single
127127
128128``` toml
129129[dependencies ]
130- hashavatar = " 1.0.4 "
130+ hashavatar = " 1.1.0 "
131131```
132132
133133Optional identity hash modes and extra raster encoders are disabled by default.
134134Hash modes are mutually exclusive, so enable at most one of ` blake3 ` or ` xxh3 ` :
135135
136136``` toml
137137[dependencies ]
138- hashavatar = { version = " 1.0.4 " , features = [" blake3" ] }
138+ hashavatar = { version = " 1.1.0 " , features = [" blake3" ] }
139139```
140140
141141Enable additional raster formats explicitly:
142142
143143``` toml
144144[dependencies ]
145- hashavatar = { version = " 1.0.4 " , features = [" png" , " jpeg" , " gif" ] }
145+ hashavatar = { version = " 1.1.0 " , features = [" png" , " jpeg" , " gif" ] }
146146```
147147
148148Or enable every optional raster encoder at once:
149149
150150``` toml
151151[dependencies ]
152- hashavatar = { version = " 1.0.4 " , features = [" all-formats" ] }
152+ hashavatar = { version = " 1.1.0 " , features = [" all-formats" ] }
153153```
154154
155155Enable string serialization/deserialization for public style enums:
156156
157157``` toml
158158[dependencies ]
159- hashavatar = { version = " 1.0.4 " , features = [" serde" ] }
159+ hashavatar = { version = " 1.1.0 " , features = [" serde" ] }
160160```
161161
162162Combine these as needed, for example ` features = ["blake3", "png", "serde"] ` .
@@ -519,7 +519,7 @@ your namespace style version when intentionally migrating output.
519519
520520``` toml
521521[dependencies ]
522- hashavatar = { version = " 1.0.4 " , features = [" blake3" ] }
522+ hashavatar = { version = " 1.1.0 " , features = [" blake3" ] }
523523```
524524
525525``` rust
@@ -547,7 +547,7 @@ assert!(svg.contains("alien avatar"));
547547
548548``` toml
549549[dependencies ]
550- hashavatar = { version = " 1.0.4 " , features = [" xxh3" ] }
550+ hashavatar = { version = " 1.1.0 " , features = [" xxh3" ] }
551551```
552552
553553``` rust
0 commit comments