Skip to content

Commit 734eb53

Browse files
authored
chore: Prepare for release
1 parent ce5c318 commit 734eb53

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "app-store-server-library"
33
description = "The Rust server library for the App Store Server API, App Store Server Notifications and Advanced Commerce API"
4-
version = "4.0.0"
4+
version = "4.0.1"
55
repository = "https://github.com/namecare/app-store-server-library-rust"
66
homepage = "https://github.com/namecare/app-store-server-library-rust"
77
authors = ["tkhp", "namecare"]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Specify `app-store-server-library` in your project's `Cargo.toml` file, under th
1111

1212
```toml
1313
[dependencies]
14-
app-store-server-library = { version = "4.0.0", features = ["receipt-utility", "api-client", "ocsp"] }
14+
app-store-server-library = { version = "4.0.1", features = ["receipt-utility", "api-client", "ocsp"] }
1515
```
1616

1717
### Feature Flags
@@ -121,7 +121,7 @@ To enable OCSP verification:
121121

122122
```toml
123123
[dependencies]
124-
app-store-server-library = { version = "4.0.0", features = ["ocsp"] }
124+
app-store-server-library = { version = "4.0.1", features = ["ocsp"] }
125125
```
126126

127127
OCSP verification is performed automatically when verifying signed data.

src/api_client/api_client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl<T: Transport, API, E: APIServiceErrorCode + DeserializeOwned> ApiClient<T,
101101
let mut request_builder = Request::builder()
102102
.method(method)
103103
.uri(url)
104-
.header("User-Agent", "app-store-server-library/rust/4.0.0")
104+
.header("User-Agent", "app-store-server-library/rust/4.0.1")
105105
.header("Authorization", format!("Bearer {}", self.generate_token()))
106106
.header("Accept", "application/json");
107107

0 commit comments

Comments
 (0)