Skip to content

Commit

Permalink
Release v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Sep 11, 2024
1 parent 97e9938 commit ae8ab5b
Show file tree
Hide file tree
Showing 5 changed files with 226 additions and 84 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "GPL-3.0"
name = "reqwew"
readme = "README.md"
repository = "https://github.com/hack-ink/reqwew"
version = "0.2.5"
version = "0.3.0"

[profile.ci-dev]
incremental = false
Expand Down
4 changes: 2 additions & 2 deletions src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ pub enum Error {
#[error(transparent)]
SerdeJson(#[from] serde_json::Error),

#[error("[api] max retries exceeded after {retries} attempts")]
ExceededMaxRetries { retries: u32 },
#[error("[reqwew] max retries exceeded after {0} attempts")]
ExceededMaxRetries(u32),
}
Loading

0 comments on commit ae8ab5b

Please sign in to comment.