Update pom version in docs to 0.8.1-SNAPSHOT

This commit is contained in:
Christian Tzolov
2024-02-24 21:19:52 +01:00
parent 433f820e8b
commit 56cbb2221a

View File

@@ -98,7 +98,7 @@ If youre a Maven user, you can use the BOM by adding the following to your po
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-ai-bom</artifactId>
<version>0.8.0</version>
<version>0.8.1-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -113,7 +113,7 @@ As shown in the snippet below this can then be followed by version-less declarat
[source,gradle]
----
dependencies {
implementation platform("org.springframework.ai:spring-ai-bom:0.8.0")
implementation platform("org.springframework.ai:spring-ai-bom:0.8.1-SNAPSHOT")
// Replace the following with the starter dependencies of specific modules you wish to use
implementation 'org.springframework.ai:spring-ai-openai'
}