Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Build and Push image
run: make docker-build && make docker-push
# - name: Build and Push image
# run: make docker-build && make docker-push

- name: Set up Sonatype Maven
uses: actions/setup-java@v3
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
twilio-java changelog
=====================

[2025-06-30] Version 10.0.0-rc.7
--------------------------------
**Library -Chore**
- Test Release


[2025-06-12] Version 10.9.2
---------------------------
**Library - Chore**
Expand Down
7 changes: 4 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.twilio.sdk</groupId>
<artifactId>twilio</artifactId>
<artifactId>twilio-java-sdk</artifactId>
<packaging>jar</packaging>
<name>twilio</name>
<version>10.9.2</version>
<version>10.0.0-rc.7</version>
<description>Twilio Java Helper Library</description>
<url>https://www.twilio.com</url>
<licenses>
Expand All @@ -19,7 +19,7 @@
<url>[email protected]:twilio/twilio-java.git</url>
<connection>scm:git:[email protected]:twilio/twilio-java.git</connection>
<developerConnection>scm:git:[email protected]:twilio/twilio-java.git</developerConnection>
<tag>10.9.2</tag>
<tag>10.0.0-rc.7</tag>
</scm>
<developers>
<developer>
Expand Down Expand Up @@ -111,6 +111,7 @@
<configuration>
<publishingServerId>central</publishingServerId>
<autoPublish>true</autoPublish>
<centralSnapshotsUrl>https://central.sonatype.com/repository/maven-snapshots/</centralSnapshotsUrl>
</configuration>
</plugin>
<plugin>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/twilio/Twilio.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
*/
public class Twilio {

public static final String VERSION = "10.9.2";
public static final String VERSION = "10.0.0-rc.7";
public static final String JAVA_VERSION = System.getProperty("java.version");
public static final String OS_NAME = System.getProperty("os.name");
public static final String OS_ARCH = System.getProperty("os.arch");
Expand Down
Loading