Skip to content

Commit 1cdca4e

Browse files
committed
chore: Release 0.3.1.Final
1 parent db1e266 commit 1cdca4e

File tree

38 files changed

+40
-40
lines changed

38 files changed

+40
-40
lines changed

.github/workflows/run-tck.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on:
44
# Handle all branches for now
55
push:
66
branches:
7-
- main
7+
- 0.3.x
88
pull_request:
99
branches:
1010
- main
1111
workflow_dispatch:
1212

1313
env:
1414
# Tag of the TCK
15-
TCK_VERSION: 0.3.0.beta2
15+
TCK_VERSION: 0.3.0.beta3
1616
# Tells uv to not need a venv, and instead use system
1717
UV_SYSTEM_PYTHON: 1
1818
# SUT_JSONRPC_URL to use for the TCK and the server agent

client/base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>a2a-java-sdk-client</artifactId>

client/transport/grpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>a2a-java-sdk-client-transport-grpc</artifactId>

client/transport/jsonrpc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>a2a-java-sdk-client-transport-jsonrpc</artifactId>

client/transport/rest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>a2a-java-sdk-client-transport-rest</artifactId>

client/transport/spi/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../../pom.xml</relativePath>
1212
</parent>
1313
<artifactId>a2a-java-sdk-client-transport-spi</artifactId>

common/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-common</artifactId>
1313

examples/cloud-deployment/server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
<relativePath>../../../pom.xml</relativePath>
1212
</parent>
1313

examples/helloworld/client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.github.a2asdk</groupId>
99
<artifactId>a2a-java-sdk-examples-parent</artifactId>
10-
<version>0.3.1.Beta1-SNAPSHOT</version>
10+
<version>0.3.1.Final</version>
1111
</parent>
1212

1313
<artifactId>a2a-java-sdk-examples-client</artifactId>

examples/helloworld/client/src/main/java/io/a2a/examples/helloworld/HelloWorldRunner.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
///usr/bin/env jbang "$0" "$@" ; exit $?
2-
//DEPS io.github.a2asdk:a2a-java-sdk-client:0.3.1.Beta1-SNAPSHOT
3-
//DEPS io.github.a2asdk:a2a-java-sdk-client-transport-jsonrpc:0.3.1.Beta1-SNAPSHOT
2+
//DEPS io.github.a2asdk:a2a-java-sdk-client:0.3.1.Final
3+
//DEPS io.github.a2asdk:a2a-java-sdk-client-transport-jsonrpc:0.3.1.Final
44
//SOURCES HelloWorldClient.java
55

66
/**

0 commit comments

Comments
 (0)