Skip to content

Commit 4132edb

Browse files
authored
chore: Prepare for release (#91)
1 parent ebafbd4 commit 4132edb

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.1"
4+
version = "4.1.0"
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.1", features = ["receipt-utility", "api-client", "ocsp"] }
14+
app-store-server-library = { version = "4.1.0", 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.1", features = ["ocsp"] }
124+
app-store-server-library = { version = "4.1.0", 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
@@ -133,7 +133,7 @@ impl<T: Transport, API, E: APIServiceErrorCode + DeserializeOwned> ApiClient<T,
133133
let mut request_builder = Request::builder()
134134
.method(method)
135135
.uri(url)
136-
.header("User-Agent", "app-store-server-library/rust/4.0.1")
136+
.header("User-Agent", "app-store-server-library/rust/4.1.0")
137137
.header("Authorization", format!("Bearer {}", self.generate_token()))
138138
.header("Accept", "application/json");
139139

0 commit comments

Comments
 (0)