forked from langflow-ai/langflow
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f910b6b
commit 43e1607
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Release RAGStack Langflow packages | ||
|
||
The main package `ragstack-ai-langflow` depends on `ragstack-ai-langflow-base` and the version is pinned. | ||
This implies that every release of `ragstack-ai-langflow-base` will also need a release of `ragstack-ai-langflow`. | ||
|
||
## Release `ragstack-ai-langflow-base` | ||
|
||
- Run the release script: | ||
```shell | ||
./ragstack/ragstack-release.sh 0.0.2 ragstack-ai-langflow-base | ||
``` | ||
The script will take care of updating the version in `ragstack-ai-langflow-base` and pushing the changes to the repository. CI will automatically release the package on PyPI. | ||
|
||
## Release `ragstack-ai-langflow` | ||
|
||
- Update the `pyproject.toml` file pointing to the correct version of `ragstack-ai-langflow-base`. Run `poetry lock` and open a PR to trigger the tests. Once merged, proceed with the next steps. | ||
- Run the release script: | ||
```shell | ||
./ragstack/ragstack-release.sh 0.0.2 ragstack-ai-langflow | ||
``` | ||
The script will take care of updating the version in `ragstack-ai-langflow` and pushing the changes to the repository. CI will automatically release the package on PyPI. |