We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8f377e commit 628aba8Copy full SHA for 628aba8
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "uapi-sdk-rust"
3
-version = "0.1.3"
+version = "0.1.4"
4
edition = "2021"
5
license = "MIT OR Apache-2.0"
6
description = "UAPI Rust SDK - idiomatic, typed, domain-driven API client."
src/client.rs
@@ -13,7 +13,7 @@ use tracing::{debug, instrument};
13
use url::Url;
14
15
static DEFAULT_BASE: &str = "https://uapis.cn/api/v1/";
16
-static DEFAULT_UA: &str = "uapi-sdk-rust/0.1.3";
+static DEFAULT_UA: &str = "uapi-sdk-rust/0.1.4";
17
static DEFAULT_BASE_URL: Lazy<Url> =
18
Lazy::new(|| Url::parse(DEFAULT_BASE).expect("valid default base"));
19
0 commit comments