Skip to content

Commit

Permalink
Merge pull request #45 from namecare/develop
Browse files Browse the repository at this point in the history
chore: Release 0.9.1
  • Loading branch information
tikhop authored Jan 29, 2024
2 parents 9944b70 + 1c244c0 commit f4dacbb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "app-store-server-library"
description = "The Rust server library for the App Store Server API and App Store Server Notifications"
version = "0.9.0"
version = "0.9.1"
repository = "https://github.com/namecare/app-store-server-library-rust"
homepage = "https://github.com/namecare/app-store-server-library-rust"
authors = ["tkhp", "namecare"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Specify `app-store-server-library` in your project's `Cargo.toml` file, under th

```rust
[dependencies]
app-store-server-library = { version = "0.9.0", features = ["receipt_utility"] }
app-store-server-library = { version = "0.9.1", features = ["receipt_utility"] }
```
Check
[crates.io](https://crates.io/crates/app-store-server-library) for the latest version number.
Expand Down
2 changes: 1 addition & 1 deletion src/primitives/status_response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub struct StatusResponse {
///
/// [appAppleId](https://developer.apple.com/documentation/appstoreservernotifications/appappleid)
#[serde(rename = "appAppleId")]
pub app_apple_id: i64,
pub app_apple_id: Option<i64>,

/// An array of information for auto-renewable subscriptions, including App Store-signed transaction information and App Store-signed renewal information.
pub data: Vec<SubscriptionGroupIdentifierItem>,
Expand Down

0 comments on commit f4dacbb

Please sign in to comment.