Skip to content

Commit

Permalink
Bump version to 22.17.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pakrym-stripe committed Apr 13, 2023
1 parent 64e6d27 commit cb08b28
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
20 changes: 14 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 22.17.0-beta.2 - 2023-04-13
* [#1545](https://github.com/stripe/stripe-java/pull/1545) Update generated code for beta
* Add support for `collect_payment_method` and `confirm_payment_intent` methods on resource `Terminal.Reader`
* Add support for `paypal_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities`
* Add support for `collect_payment_method` and `confirm_payment_intent` on `Terminal.Reader.action`
* Add support for `stripe_account` on `Terminal.Reader.action.process_payment_intent` and `Terminal.Reader.action.refund_payment`
* Add support for new value `terminal.reader.action_updated` on enums `WebhookEndpointCreateParams.enabled_events[]` and `WebhookEndpointUpdateParams.enabled_events[]`

## 22.17.0-beta.1 - 2023-04-06
* [#1539](https://github.com/stripe/stripe-java/pull/1539) Update generated code for beta
* Add support for `treasury_transaction` on `CapitalFinancingTransactionListParams`
Expand All @@ -10,20 +18,20 @@

## 22.16.0 - 2023-04-06
* [#1540](https://github.com/stripe/stripe-java/pull/1540) Update generated code
* Add support for `country` on `PaymentMethod.link`
* Add support for `country` on `PaymentMethod.link`
* Add support for `status_details` on `PaymentMethod.us_bank_account`

## 22.16.0-beta.1 - 2023-03-30
* [#1537](https://github.com/stripe/stripe-java/pull/1537) Update generated code
* Add support for new value `ioss` on enum `TaxRegistrationCreateParams.type`
* Add support for new value `ioss` on enum `TaxRegistrationCreateParams.type`
* Change `TerminalReaderCollectInputsParams.inputs[].custom_text.description` to be optional

## 22.15.0 - 2023-03-30
* [#1536](https://github.com/stripe/stripe-java/pull/1536) Update generated code
* Remove support for `create` method on resource `Tax.Transaction`
* This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `createFromCalculation` method.
* Add support for `export_license_id` and `export_purpose_code` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
* Add support for `amount_tip` on `TerminalReaderPresentPaymentMethodParams`
* Remove support for `create` method on resource `Tax.Transaction`
* This is not a breaking change, as this method was deprecated before the Tax Transactions API was released in favor of the `createFromCalculation` method.
* Add support for `export_license_id` and `export_purpose_code` on `Account.company`, `AccountCreateParams.company`, `AccountUpdateParams.company`, and `TokenCreateParams.account.company`
* Add support for `amount_tip` on `TerminalReaderPresentPaymentMethodParams`
* [#1538](https://github.com/stripe/stripe-java/pull/1538) Add missing file purpose terminal_reader_splashscreen

## 22.15.0-beta.1 - 2023-03-23
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Stripe Java client library

[![Maven Central](https://img.shields.io/badge/maven--central-v22.17.0-beta.1-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
[![Maven Central](https://img.shields.io/badge/maven--central-v22.17.0-beta.2-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java)
[![JavaDoc](http://img.shields.io/badge/javadoc-reference-blue.svg)](https://stripe.dev/stripe-java)
[![Build Status](https://github.com/stripe/stripe-java/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/stripe/stripe-java/actions?query=branch%3Amaster)
[![Coverage Status](https://coveralls.io/repos/github/stripe/stripe-java/badge.svg?branch=master)](https://coveralls.io/github/stripe/stripe-java?branch=master)
Expand All @@ -18,7 +18,7 @@ The official [Stripe][stripe] Java client library.
Add this dependency to your project's build file:

```groovy
implementation "com.stripe:stripe-java:22.17.0-beta.1"
implementation "com.stripe:stripe-java:22.17.0-beta.2"
```

### Maven users
Expand All @@ -29,15 +29,15 @@ Add this dependency to your project's POM:
<dependency>
<groupId>com.stripe</groupId>
<artifactId>stripe-java</artifactId>
<version>22.17.0-beta.1</version>
<version>22.17.0-beta.2</version>
</dependency>
```

### Others

You'll need to manually install the following JARs:

- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/22.17.0-beta.1/stripe-java-22.17.0-beta.1.jar)
- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/22.17.0-beta.2/stripe-java-22.17.0-beta.2.jar)
- [Google Gson][gson] from <https://repo1.maven.org/maven2/com/google/code/gson/gson/2.9.0/gson-2.9.0.jar>.

### [ProGuard][proguard]
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22.17.0-beta.1
22.17.0-beta.2
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.stripe
VERSION_NAME=22.17.0-beta.1
VERSION_NAME=22.17.0-beta.2

POM_URL=https://github.com/stripe/stripe-java
POM_SCM_URL=git@github.com:stripe/stripe-java.git
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/stripe/Stripe.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public abstract class Stripe {
public static final String CONNECT_API_BASE = "https://connect.stripe.com";
public static final String LIVE_API_BASE = "https://api.stripe.com";
public static final String UPLOAD_API_BASE = "https://files.stripe.com";
public static final String VERSION = "22.17.0-beta.1";
public static final String VERSION = "22.17.0-beta.2";

public static volatile String apiKey;
public static volatile String clientId;
Expand Down

0 comments on commit cb08b28

Please sign in to comment.