Skip to content

Commit

Permalink
chore: Bump up version
Browse files Browse the repository at this point in the history
  • Loading branch information
tikhop committed Feb 2, 2024
1 parent d588141 commit fb8055e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 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.1"
version = "1.0.0"
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.1", features = ["receipt_utility"] }
app-store-server-library = { version = "1.0.0", features = ["receipt-utility", "api-client"] }
```
Check
[crates.io](https://crates.io/crates/app-store-server-library) for the latest version number.
Expand Down
5 changes: 2 additions & 3 deletions src/api_client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -584,8 +584,7 @@ mod tests {
use chrono::NaiveDateTime;
use url::Url;
use uuid::Uuid;
use base64::engine::general_purpose::STANDARD;
use base64::prelude::{BASE64_STANDARD, BASE64_STANDARD_NO_PAD};
use base64::prelude::BASE64_STANDARD_NO_PAD;
use crate::primitives::account_tenure::AccountTenure;
use crate::primitives::consumption_status::ConsumptionStatus;
use crate::primitives::delivery_status::DeliveryStatus;
Expand Down Expand Up @@ -671,7 +670,7 @@ mod tests {

assert_eq!(Environment::LocalTesting, response.environment.unwrap());
assert_eq!("com.example", response.bundle_id.as_str());
assert_eq!(5454545, response.app_apple_id);
assert_eq!(5454545, response.app_apple_id.unwrap());

let item = SubscriptionGroupIdentifierItem {
subscription_group_identifier: Some("sub_group_one".to_string()),
Expand Down

0 comments on commit fb8055e

Please sign in to comment.