Skip to content

Commit a47841c

Browse files
Merge pull request #441 from Doris26:chore/release-0.3.0-manual
PiperOrigin-RevId: 808337802
2 parents d0ee215 + a0d1a52 commit a47841c

File tree

16 files changed

+156
-45
lines changed

16 files changed

+156
-45
lines changed

CHANGELOG.md

Lines changed: 125 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ If you're using Maven, add the following to your dependencies:
5050
<dependency>
5151
<groupId>com.google.adk</groupId>
5252
<artifactId>google-adk</artifactId>
53-
<version>0.2.0</version>
53+
<version>0.3.0</version>
5454
</dependency>
5555
<!-- Dev UI -->
5656
<dependency>
5757
<groupId>com.google.adk</groupId>
5858
<artifactId>google-adk-dev</artifactId>
59-
<version>0.2.0</version>
59+
<version>0.3.0</version>
6060
</dependency>
6161
```
6262

contrib/langchain4j/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17+
<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">
1918
<modelVersion>4.0.0</modelVersion>
2019

2120
<parent>
2221
<groupId>com.google.adk</groupId>
2322
<artifactId>google-adk-parent</artifactId>
24-
<version>0.2.1-SNAPSHOT</version><!-- {x-version-update:google-adk:current} -->
23+
<version>0.3.0</version><!-- {x-version-update:google-adk:current} -->
2524
<relativePath>../../pom.xml</relativePath>
2625
</parent>
2726

contrib/samples/configagent/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
<groupId>com.google.adk.samples</groupId>
66
<artifactId>configagent-samples</artifactId>
7-
<version>0.2.1-SNAPSHOT</version>
7+
<version>0.3.0</version>
88
<packaging>jar</packaging>
99

1010
<properties>
1111
<maven.compiler.source>11</maven.compiler.source>
1212
<maven.compiler.target>11</maven.compiler.target>
1313
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14-
<google-adk.version>0.2.1-SNAPSHOT</google-adk.version>
14+
<google-adk.version>0.3.0</google-adk.version>
1515
</properties>
1616

1717
<dependencies>

contrib/samples/helloworld/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>com.google.adk.samples</groupId>
2121
<artifactId>google-adk-sample-helloworld</artifactId>
22-
<version>0.2.1-SNAPSHOT</version>
22+
<version>0.3.0</version>
2323
<name>Google ADK - Sample - Hello World</name>
2424
<description>
2525
A sample "Hello World" application demonstrating basic agent and tool usage with the Google ADK,
@@ -33,7 +33,7 @@
3333
<auto-value.version>1.11.0</auto-value.version>
3434
<!-- Main class for exec-maven-plugin -->
3535
<exec.mainClass>internal.samples.helloworld.HelloWorldRun</exec.mainClass>
36-
<google-adk.version>0.2.1-SNAPSHOT</google-adk.version>
36+
<google-adk.version>0.3.0</google-adk.version>
3737
</properties>
3838

3939
<dependencies>

core/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,13 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
-->
17-
<project xmlns="http://maven.apache.org/POM/4.0.0"
18-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
17+
<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">
2018
<modelVersion>4.0.0</modelVersion>
2119

2220
<parent>
2321
<groupId>com.google.adk</groupId>
2422
<artifactId>google-adk-parent</artifactId>
25-
<version>0.2.1-SNAPSHOT</version><!-- {x-version-update:google-adk:current} -->
23+
<version>0.3.0</version><!-- {x-version-update:google-adk:current} -->
2624
</parent>
2725

2826
<artifactId>google-adk</artifactId>

core/src/main/java/com/google/adk/Version.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
public final class Version {
2424
// Don't touch this, release-please should keep it up to date.
25-
public static final String JAVA_ADK_VERSION = "0.2.1-SNAPSHOT";
25+
public static final String JAVA_ADK_VERSION = "0.3.0";
2626

2727
private Version() {}
2828
}

dev/pom.xml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,13 @@
1212
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
See the License for the specific language governing permissions and
1414
limitations under the License. -->
15-
<project
16-
xmlns="http://maven.apache.org/POM/4.0.0"
17-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
15+
<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">
1916
<modelVersion>4.0.0</modelVersion>
2017

2118
<parent>
2219
<groupId>com.google.adk</groupId>
2320
<artifactId>google-adk-parent</artifactId>
24-
<version>0.2.1-SNAPSHOT</version><!-- {x-version-update:google-adk:current} -->
21+
<version>0.3.0</version><!-- {x-version-update:google-adk:current} -->
2522
</parent>
2623

2724
<artifactId>google-adk-dev</artifactId>

maven_plugin/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Add the plugin to your `pom.xml`:
9393
<plugin>
9494
<groupId>com.google.adk</groupId>
9595
<artifactId>google-adk-maven-plugin</artifactId>
96-
<version>0.2.0</version>
96+
<version>0.3.0</version>
9797
</plugin>
9898
</plugins>
9999
</build>
@@ -276,14 +276,14 @@ Make sure your project has the necessary ADK dependencies:
276276
<dependency>
277277
<groupId>com.google.adk</groupId>
278278
<artifactId>google-adk</artifactId>
279-
<version>0.2.0</version>
279+
<version>0.3.0</version>
280280
</dependency>
281281

282282
<!-- Dev module dependency for AgentLoader interface -->
283283
<dependency>
284284
<groupId>com.google.adk</groupId>
285285
<artifactId>google-adk-dev</artifactId>
286-
<version>0.2.0</version>
286+
<version>0.3.0</version>
287287
<scope>compile</scope>
288288
</dependency>
289289
</dependencies>
@@ -303,7 +303,7 @@ Add the plugin to your `pom.xml` for convenience:
303303
<plugin>
304304
<groupId>com.google.adk</groupId>
305305
<artifactId>google-adk-maven-plugin</artifactId>
306-
<version>0.2.0</version>
306+
<version>0.3.0</version>
307307
</plugin>
308308
</plugins>
309309
</build>
@@ -330,4 +330,4 @@ Press `Ctrl+C` in the terminal to stop the server.
330330

331331
## Version Notes
332332

333-
Replace version numbers with the latest version available on [Maven Central](https://search.maven.org/artifact/com.google.adk/google-adk-maven-plugin).
333+
Replace version numbers with the latest version available on [Maven Central](https://search.maven.org/artifact/com.google.adk/google-adk-maven-plugin).

maven_plugin/examples/custom_tools/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.example</groupId>
66
<artifactId>custom-tools-example</artifactId>
7-
<version>0.2.1-SNAPSHOT</version>
7+
<version>0.3.0</version>
88
<packaging>jar</packaging>
99

1010
<name>ADK Custom Tools Example</name>
@@ -14,7 +14,7 @@
1414
<maven.compiler.source>11</maven.compiler.source>
1515
<maven.compiler.target>11</maven.compiler.target>
1616
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
17-
<google-adk.version>0.2.1-SNAPSHOT</google-adk.version>
17+
<google-adk.version>0.3.0</google-adk.version>
1818
</properties>
1919

2020
<dependencies>
@@ -56,4 +56,4 @@
5656
</plugin>
5757
</plugins>
5858
</build>
59-
</project>
59+
</project>

0 commit comments

Comments
 (0)