File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 11twilio-java changelog
22=====================
33
4+ [ 2025-07-03] Version 11.0.0-rc.0
5+ --------------------------------
6+ - Release Candidate prep
7+
48[ 2025-06-12] Version 10.9.2
59---------------------------
610** Library - Chore**
Original file line number Diff line number Diff line change @@ -62,15 +62,15 @@ Use the following dependency in your project to grab via Maven:
6262<dependency >
6363 <groupId >com.twilio.sdk</groupId >
6464 <artifactId >twilio</artifactId >
65- <version >10 .X.X</version >
65+ <version >11 .X.X-rc.x </version >
6666 <scope >compile</scope >
6767</dependency >
6868```
6969
7070or Gradle:
7171
7272``` groovy
73- implementation "com.twilio.sdk:twilio:10 .X.X"
73+ implementation "com.twilio.sdk:twilio:11 .X.X-rc.x "
7474```
7575
7676If you want to compile it yourself, here's how:
Original file line number Diff line number Diff line change 55 <artifactId >twilio</artifactId >
66 <packaging >jar</packaging >
77 <name >twilio</name >
8- <version >10.9.2 </version >
8+ <version >11.0.0-rc.0 </version >
99 <description >Twilio Java Helper Library</description >
1010 <url >https://www.twilio.com</url >
1111 <licenses >
490490 </plugin >
491491 </plugins >
492492 </build >
493- </project >
493+ </project >
Original file line number Diff line number Diff line change 2424 */
2525public class Twilio {
2626
27- public static final String VERSION = "10.9.2 " ;
27+ public static final String VERSION = "11.0.0-rc.0 " ;
2828 public static final String JAVA_VERSION = System .getProperty ("java.version" );
2929 public static final String OS_NAME = System .getProperty ("os.name" );
3030 public static final String OS_ARCH = System .getProperty ("os.arch" );
@@ -37,7 +37,7 @@ public class Twilio {
3737 private static String edge = System .getenv ("TWILIO_EDGE" );
3838 private static volatile TwilioRestClient restClient ;
3939 private static volatile ExecutorService executorService ;
40-
40+
4141 private static CredentialProvider credentialProvider ;
4242
4343 private Twilio () {
@@ -85,7 +85,7 @@ private static void setCredentialProvider(final CredentialProvider credentialPro
8585 if (credentialProvider == null ) {
8686 throw new AuthenticationException ("Credential Provider can not be null" );
8787 }
88-
88+
8989 if (!credentialProvider .equals (Twilio .credentialProvider )) {
9090 Twilio .invalidate ();
9191 }
@@ -315,7 +315,7 @@ private static void invalidate() {
315315 private static void invalidateOAuthCreds () {
316316 Twilio .credentialProvider = null ;
317317 }
318-
318+
319319 private static void invalidateBasicCreds () {
320320 Twilio .username = null ;
321321 Twilio .password = null ;
You can’t perform that action at this time.
0 commit comments