Skip to content

Commit f3a15cf

Browse files
author
LangChain4j
authored
Merge pull request #13 from langchain4j/release_0_29_0
Released 0.29.0
2 parents 62f068a + e6a8bc2 commit f3a15cf

File tree

10 files changed

+15
-7
lines changed

10 files changed

+15
-7
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Please provide a relevant code snippets to reproduce this bug.
2323
A clear and concise description of what you expected to happen.
2424

2525
**Please complete the following information:**
26-
- LangChain4j version: e.g. 0.28.0
26+
- LangChain4j version: e.g. 0.29.0
2727
- Java version: e.g. 11
2828
- Spring Boot version: e.g. 2.7.18
2929

.github/workflows/main.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
- name: Build with JDK ${{ matrix.java_version }}
2929
run: mvn -U -B deploy
3030
env:
31+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
3132
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3233
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}
3334
OSSRH_PASSWORD: ${{ secrets.OSSRH_PASSWORD }}

.github/workflows/release.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ jobs:
2727
- name: release
2828
run: mvn -B -U --fail-at-end -Psign clean deploy
2929
env:
30+
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
3031
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
3132
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
3233
OSSRH_USERNAME: ${{ secrets.OSSRH_USERNAME }}

langchain4j-anthropic-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>dev.langchain4j</groupId>
99
<artifactId>langchain4j-spring</artifactId>
10-
<version>0.29.0-SNAPSHOT</version>
10+
<version>0.29.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

langchain4j-anthropic-spring-boot-starter/src/test/java/dev/langchain4j/anthropic/spring/AutoConfigIT.java

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import dev.langchain4j.model.chat.ChatLanguageModel;
88
import dev.langchain4j.model.chat.StreamingChatLanguageModel;
99
import dev.langchain4j.model.output.Response;
10+
import org.junit.jupiter.api.AfterEach;
1011
import org.junit.jupiter.api.Test;
1112
import org.springframework.boot.autoconfigure.AutoConfigurations;
1213
import org.springframework.boot.test.context.runner.ApplicationContextRunner;
@@ -23,6 +24,11 @@ class AutoConfigIT {
2324
ApplicationContextRunner contextRunner = new ApplicationContextRunner()
2425
.withConfiguration(AutoConfigurations.of(AutoConfig.class));
2526

27+
@AfterEach
28+
void afterEach() throws InterruptedException {
29+
Thread.sleep(10_000); // to avoid hitting rate limits
30+
}
31+
2632
@Test
2733
void should_provide_chat_model() {
2834
contextRunner

langchain4j-easy-rag-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>dev.langchain4j</groupId>
99
<artifactId>langchain4j-spring</artifactId>
10-
<version>0.29.0-SNAPSHOT</version>
10+
<version>0.29.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

langchain4j-ollama-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>dev.langchain4j</groupId>
99
<artifactId>langchain4j-spring</artifactId>
10-
<version>0.29.0-SNAPSHOT</version>
10+
<version>0.29.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

langchain4j-open-ai-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>dev.langchain4j</groupId>
99
<artifactId>langchain4j-spring</artifactId>
10-
<version>0.29.0-SNAPSHOT</version>
10+
<version>0.29.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

langchain4j-spring-boot-starter/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>dev.langchain4j</groupId>
99
<artifactId>langchain4j-spring</artifactId>
10-
<version>0.29.0-SNAPSHOT</version>
10+
<version>0.29.0</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>dev.langchain4j</groupId>
88
<artifactId>langchain4j-spring</artifactId>
9-
<version>0.29.0-SNAPSHOT</version>
9+
<version>0.29.0</version>
1010
<packaging>pom</packaging>
1111

1212
<name>langchain4j-spring parent POM</name>

0 commit comments

Comments
 (0)