Skip to content

Commit 289ed90

Browse files
committed
Merge branch 'release/1.0-beta4'
2 parents af7c7c9 + 25f45aa commit 289ed90

File tree

9 files changed

+28
-10
lines changed

9 files changed

+28
-10
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,24 @@ LangGraph for Java. A library for building stateful, multi-agents applications w
3030
- [x] Threads (_checkpointing of multiple different runs_)
3131
- [x] Update state (_interact with the state directly and update it_)
3232
- [x] Breakpoints (_pause and resume feature_)
33-
- [ ] Graph migration
33+
- [ ] Parallel Node Execution
3434

3535
## Samples
3636

3737
* [Agent Executor](agent-executor/README.md)
3838
* [Image To PlantUML Diagram](image-to-diagram/README.md)
3939
* [Adaptive RAG](adaptive-rag/README.md)
4040

41+
## How To(s)
42+
43+
* [How to add persistence ("memory") to your graph](how-tos/persistence.ipynb)
44+
* [How to view and update past graph state](how-tos/time-travel.ipynb)
45+
4146
## Releases
4247

4348
| Date | Release | info
4449
|--------------|----------------| ---
45-
| Aug 10, 2024 | `1.0-beta2` | last official beta release
50+
| Sep 06, 2024 | `1.0-beta4` | last official beta release
4651

4752

4853
## Quick Start

adaptive-rag/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.bsc.langgraph4j</groupId>
66
<artifactId>langgraph4j-parent</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.0-beta4</version>
88
</parent>
99

1010
<artifactId>langgraph4j-adaptive-rag</artifactId>

agent-executor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.bsc.langgraph4j</groupId>
66
<artifactId>langgraph4j-parent</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.0-beta4</version>
88
</parent>
99

1010
<artifactId>langgraph4j-agent-executor</artifactId>

core-jdk8/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.bsc.langgraph4j</groupId>
77
<artifactId>langgraph4j-parent</artifactId>
8-
<version>1.0-SNAPSHOT</version>
8+
<version>1.0-beta4</version>
99
</parent>
1010

1111
<artifactId>langgraph4j-core-jdk8</artifactId>

changelog.sh renamed to hotfix-changelog.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/bin/bash
2+
13
# prepare the CHANGELOG.md with the current version
24
git flow hotfix start changeme
35

@@ -7,4 +9,4 @@ git-changelog-command-line -of CHANGELOG.md
79
git commit -m'docs: update changeme' -a
810

911
# finish the hotfix without create tag
10-
git flow hotfix finish changeme -n
12+
git flow hotfix finish changeme -n -m"changelog hotfix merge"

hotfix-docs.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
# prepare the CHANGELOG.md with the current version
4+
git flow hotfix start docs
5+
6+
read -p "commit message: " msg
7+
8+
git commit -m"docs: $msg" -a
9+
10+
# finish the hotfix without create tag
11+
git flow hotfix finish docs -n -m"docs hotfix merge"

image-to-diagram/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.bsc.langgraph4j</groupId>
66
<artifactId>langgraph4j-parent</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.0-beta4</version>
88
</parent>
99

1010
<artifactId>langgraph4j-image-to-diagram</artifactId>

pom.xml

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

55
<groupId>org.bsc.langgraph4j</groupId>
66
<artifactId>langgraph4j-parent</artifactId>
7-
<version>1.0-SNAPSHOT</version>
7+
<version>1.0-beta4</version>
88
<packaging>pom</packaging>
99

1010
<name>langgraph4j::parent</name>
@@ -36,7 +36,7 @@
3636

3737
<properties>
3838
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39-
<langchai4j.version>0.33.0</langchai4j.version>
39+
<langchai4j.version>0.34.0</langchai4j.version>
4040
</properties>
4141

4242
<distributionManagement>

server-jetty/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.bsc.langgraph4j</groupId>
88
<artifactId>langgraph4j-parent</artifactId>
9-
<version>1.0-SNAPSHOT</version>
9+
<version>1.0-beta4</version>
1010
</parent>
1111

1212
<artifactId>langgraph4j-server-jetty</artifactId>

0 commit comments

Comments
 (0)