Skip to content

Commit

Permalink
Merge branch 'release/1.0-beta4'
Browse files Browse the repository at this point in the history
  • Loading branch information
bsorrentino committed Sep 6, 2024
2 parents af7c7c9 + 25f45aa commit 289ed90
Show file tree
Hide file tree
Showing 9 changed files with 28 additions and 10 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,24 @@ LangGraph for Java. A library for building stateful, multi-agents applications w
- [x] Threads (_checkpointing of multiple different runs_)
- [x] Update state (_interact with the state directly and update it_)
- [x] Breakpoints (_pause and resume feature_)
- [ ] Graph migration
- [ ] Parallel Node Execution

## Samples

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

## How To(s)

* [How to add persistence ("memory") to your graph](how-tos/persistence.ipynb)
* [How to view and update past graph state](how-tos/time-travel.ipynb)

## Releases

| Date | Release | info
|--------------|----------------| ---
| Aug 10, 2024 | `1.0-beta2` | last official beta release
| Sep 06, 2024 | `1.0-beta4` | last official beta release


## Quick Start
Expand Down
2 changes: 1 addition & 1 deletion adaptive-rag/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
</parent>

<artifactId>langgraph4j-adaptive-rag</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent-executor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
</parent>

<artifactId>langgraph4j-agent-executor</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core-jdk8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
</parent>

<artifactId>langgraph4j-core-jdk8</artifactId>
Expand Down
4 changes: 3 additions & 1 deletion changelog.sh → hotfix-changelog.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# prepare the CHANGELOG.md with the current version
git flow hotfix start changeme

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

# finish the hotfix without create tag
git flow hotfix finish changeme -n
git flow hotfix finish changeme -n -m"changelog hotfix merge"
11 changes: 11 additions & 0 deletions hotfix-docs.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash

# prepare the CHANGELOG.md with the current version
git flow hotfix start docs

read -p "commit message: " msg

git commit -m"docs: $msg" -a

# finish the hotfix without create tag
git flow hotfix finish docs -n -m"docs hotfix merge"
2 changes: 1 addition & 1 deletion image-to-diagram/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
</parent>

<artifactId>langgraph4j-image-to-diagram</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
<packaging>pom</packaging>

<name>langgraph4j::parent</name>
Expand Down Expand Up @@ -36,7 +36,7 @@

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<langchai4j.version>0.33.0</langchai4j.version>
<langchai4j.version>0.34.0</langchai4j.version>
</properties>

<distributionManagement>
Expand Down
2 changes: 1 addition & 1 deletion server-jetty/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.bsc.langgraph4j</groupId>
<artifactId>langgraph4j-parent</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0-beta4</version>
</parent>

<artifactId>langgraph4j-server-jetty</artifactId>
Expand Down

0 comments on commit 289ed90

Please sign in to comment.