Skip to content

Commit bc3c8cb

Browse files
authored
chore: Release 0.2.5.Beta1 and move to next snapshot (#196)
# Description Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly: - [x] Follow the [`CONTRIBUTING` Guide](../CONTRIBUTING.md). - [x] Make your Pull Request title in the <https://www.conventionalcommits.org/> specification. - Important Prefixes for [release-please](https://github.com/googleapis/release-please): - `fix:` which represents bug fixes, and correlates to a [SemVer](https://semver.org/) patch. - `feat:` represents a new feature, and correlates to a SemVer minor. - `feat!:`, or `fix!:`, `refactor!:`, etc., which represent a breaking change (indicated by the `!`) and will result in a SemVer major. - [x] Ensure the tests pass - [x] Appropriate READMEs were updated (if necessary) Fixes #<issue_number_goes_here> 🦕
1 parent b420b52 commit bc3c8cb

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

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-parent</artifactId>
10-
<version>0.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-client</artifactId>
1313

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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-common</artifactId>
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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212

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

examples/helloworld/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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>
1313

examples/helloworld/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-examples-parent</artifactId>
10-
<version>0.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212

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

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.github.a2asdk</groupId>
88
<artifactId>a2a-java-sdk-parent</artifactId>
9-
<version>0.2.5.Beta1-SNAPSHOT</version>
9+
<version>0.2.5.Beta2-SNAPSHOT</version>
1010

1111
<packaging>pom</packaging>
1212

reference-impl/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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-reference-server</artifactId>
1313

sdk-server-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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-server-common</artifactId>
1313

spec/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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212
<artifactId>a2a-java-sdk-spec</artifactId>
1313

tck/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.2.5.Beta1-SNAPSHOT</version>
10+
<version>0.2.5.Beta2-SNAPSHOT</version>
1111
</parent>
1212

1313
<artifactId>a2a-tck-server</artifactId>

0 commit comments

Comments
 (0)