From 804e0418cb12565ef5266f9db6fb865932c1db65 Mon Sep 17 00:00:00 2001 From: Prathmesh Ranaut Date: Thu, 23 Jan 2025 16:23:53 -0500 Subject: [PATCH] Bump version to 28.3.0-beta.3 --- CHANGELOG.md | 4 ++++ README.md | 8 ++++---- VERSION | 2 +- gradle.properties | 2 +- src/main/java/com/stripe/Stripe.java | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ed8bbca0bf..bb7e7c689a1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 28.3.0-beta.3 - 2025-01-23 +* [#1939](https://github.com/stripe/stripe-java/pull/1939) Update generated code for beta + * Remove support for `stripe_account` on `Terminal.Reader.action.collect_payment_method`, `Terminal.Reader.action.confirm_payment_intent`, `Terminal.Reader.action.process_payment_intent`, and `Terminal.Reader.action.refund_payment` + ## 28.3.0-beta.2 - 2025-01-17 * [#1935](https://github.com/stripe/stripe-java/pull/1935) Update generated code for beta * Add support for `pay_by_bank_payments` on `Account.capabilities`, `AccountCreateParams.capabilities`, and `AccountUpdateParams.capabilities` diff --git a/README.md b/README.md index e54a039e862..0e3fc108312 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Stripe Java client library -[![Maven Central](https://img.shields.io/badge/maven--central-v28.3.0-beta.2-blue)](https://mvnrepository.com/artifact/com.stripe/stripe-java) +[![Maven Central](https://img.shields.io/badge/maven--central-v28.3.0-beta.3-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) @@ -17,7 +17,7 @@ The official [Stripe][stripe] Java client library. Add this dependency to your project's build file: ```groovy -implementation "com.stripe:stripe-java:28.3.0-beta.2" +implementation "com.stripe:stripe-java:28.3.0-beta.3" ``` ### Maven users @@ -28,7 +28,7 @@ Add this dependency to your project's POM: com.stripe stripe-java - 28.3.0-beta.2 + 28.3.0-beta.3 ``` @@ -36,7 +36,7 @@ Add this dependency to your project's POM: You'll need to manually install the following JARs: -- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/28.3.0-beta.2/stripe-java-28.3.0-beta.2.jar) +- [The Stripe JAR](https://search.maven.org/remotecontent?filepath=com/stripe/stripe-java/28.3.0-beta.3/stripe-java-28.3.0-beta.3.jar) - [Google Gson][gson] from . ### [ProGuard][proguard] diff --git a/VERSION b/VERSION index 40119404140..730fea9109b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -28.3.0-beta.2 +28.3.0-beta.3 diff --git a/gradle.properties b/gradle.properties index a3908a8568c..536c2e6bfe6 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ GROUP=com.stripe -VERSION_NAME=28.3.0-beta.2 +VERSION_NAME=28.3.0-beta.3 POM_URL=https://github.com/stripe/stripe-java POM_SCM_URL=git@github.com:stripe/stripe-java.git diff --git a/src/main/java/com/stripe/Stripe.java b/src/main/java/com/stripe/Stripe.java index c2b27af4544..00c8792425c 100644 --- a/src/main/java/com/stripe/Stripe.java +++ b/src/main/java/com/stripe/Stripe.java @@ -15,7 +15,7 @@ public abstract class Stripe { 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 METER_EVENTS_API_BASE = "https://meter-events.stripe.com"; - public static final String VERSION = "28.3.0-beta.2"; + public static final String VERSION = "28.3.0-beta.3"; public static volatile String apiKey; public static volatile String clientId;