Skip to content

Commit 9ddffda

Browse files
committed
Update hashavatar API to 1.0.2
1 parent d7e68ea commit 9ddffda

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
cache-on-failure: true
3333

3434
- name: Install security tools
35-
uses: taiki-e/install-action@v2.79.14
35+
uses: taiki-e/install-action@v2.80.0
3636
with:
3737
tool: cargo-deny,cargo-audit,cargo-sbom
3838

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashavatar-api"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2024"
55
rust-version = "1.96"
66
description = "Public avatar API and landing page for hashavatar"
@@ -12,7 +12,7 @@ documentation = "https://github.com/valkyoth/hashavatar-api"
1212
[dependencies]
1313
aws-config = { version = "1.8.17", default-features = false, features = ["rt-tokio"] }
1414
aws-sdk-s3 = { version = "1.134.0", default-features = false, features = ["rt-tokio", "sigv4a"] }
15-
hashavatar = "1.0.1"
15+
hashavatar = "1.0.2"
1616
image = { version = "0.25.10", default-features = false, features = ["png"] }
1717
axum = { version = "0.8.9", default-features = false, features = ["http1", "tokio", "query", "json"] }
1818
getrandom = { version = "0.4.2", default-features = false }

Cargo.toml.split-template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hashavatar-api"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
edition = "2024"
55
rust-version = "1.96"
66
description = "Public avatar API and landing page for hashavatar"
@@ -10,7 +10,7 @@ homepage = "https://github.com/valkyoth/hashavatar-api"
1010
documentation = "https://github.com/valkyoth/hashavatar-api"
1111

1212
[dependencies]
13-
hashavatar = "1.0.1"
13+
hashavatar = "1.0.2"
1414
axum = { version = "0.8.9", default-features = false, features = ["http1", "tokio", "query", "json"] }
1515
getrandom = { version = "0.4.2", default-features = false }
1616
ipnet = { version = "2.12.0", default-features = false }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ audit, SBOM, reproducibility, smoke, and GitHub CodeQL default setup checks.
1111

1212
## Current Status
1313

14-
The current service version is `1.0.1`.
14+
The current service version is `1.0.2`.
1515

1616
Implemented now:
1717

@@ -25,7 +25,7 @@ Implemented now:
2525
- Namespace-aware tenant and style-version parameters.
2626
- SHA-512 identity hashing.
2727
- WebP avatar responses.
28-
- Avatar families from `hashavatar 1.0.1`: `cat`, `dog`, `robot`, `fox`,
28+
- Avatar families from `hashavatar 1.0.2`: `cat`, `dog`, `robot`, `fox`,
2929
`alien`, `monster`, `ghost`, `slime`, `bird`, `wizard`, `skull`, `paws`,
3030
`planet`, `rocket`, `mushroom`, `cactus`, `frog`, `panda`, `cupcake`,
3131
`pizza`, `icecream`, `octopus`, `knight`, `bear`, `penguin`, `dragon`,
@@ -57,7 +57,7 @@ Intentionally external:
5757
| Area | Status |
5858
| --- | --- |
5959
| Service license | `EUPL-1.2` |
60-
| Renderer crate | `hashavatar 1.0.1` |
60+
| Renderer crate | `hashavatar 1.0.2` |
6161
| MSRV | Rust `1.96.0` |
6262
| Runtime container | Wolfi |
6363
| HTTP framework | `axum` |

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3980,7 +3980,7 @@ mod tests {
39803980
}
39813981

39823982
#[test]
3983-
fn build_avatar_asset_renders_webp_with_hashavatar_1_0_1() {
3983+
fn build_avatar_asset_renders_webp_with_hashavatar_1_0_2() {
39843984
let request = test_avatar_request(AvatarRequestFormat::Webp);
39853985
let asset = build_avatar_asset(&request).expect("webp avatar should render");
39863986

0 commit comments

Comments
 (0)