Skip to content

Commit

Permalink
Release v0.3.1 (#1001)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlonsoGuevara authored Aug 21, 2024
1 parent f5b4d2f commit 9c6f5e0
Show file tree
Hide file tree
Showing 10 changed files with 46 additions and 30 deletions.
34 changes: 34 additions & 0 deletions .semversioner/0.3.1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"changes": [
{
"description": "Add preflight check to check LLM connectivity.",
"type": "patch"
},
{
"description": "Add streaming support for local/global search to query cli",
"type": "patch"
},
{
"description": "Add support for both float and int on schema validation for community report generation",
"type": "patch"
},
{
"description": "Avoid running index on gh-pages publishing",
"type": "patch"
},
{
"description": "Implement Index API",
"type": "patch"
},
{
"description": "Improves filtering for data dir inferring",
"type": "patch"
},
{
"description": "Update to nltk 3.9.1",
"type": "patch"
}
],
"created_at": "2024-08-21T22:46:19+00:00",
"version": "0.3.1"
}
4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20240816080238245653.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/minor-20240819154736579383.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240812232353903544.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240814191012840742.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240816201609674515.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240819221559462799.json

This file was deleted.

4 changes: 0 additions & 4 deletions .semversioner/next-release/patch-20240820202507768622.json

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# Changelog
Note: version releases in the 0.x.y range may introduce breaking changes.

## 0.3.1

- patch: Add preflight check to check LLM connectivity.
- patch: Add streaming support for local/global search to query cli
- patch: Add support for both float and int on schema validation for community report generation
- patch: Avoid running index on gh-pages publishing
- patch: Implement Index API
- patch: Improves filtering for data dir inferring
- patch: Update to nltk 3.9.1

## 0.3.0

- minor: Implement auto templating API.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "graphrag"
# Maintainers: do not change the version here manually, use ./scripts/release.sh
version = "0.3.0"
version = "0.3.1"
description = ""
authors = [
"Alonso Guevara Fernández <[email protected]>",
Expand Down Expand Up @@ -117,7 +117,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n
_convert_global_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/notebooks/ --output="{notebook_name}_nb" --template=docsite/nbdocsite_template --to markdown examples_notebooks/global_search.ipynb'
_semversioner_release = "semversioner release"
_semversioner_changelog = "semversioner changelog > CHANGELOG.md"
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(semversioner current-version)"
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(poetry run semversioner current-version)"
coverage_report = 'coverage report --omit "**/tests/**" --show-missing'
check_format = 'ruff format . --check --preview'
fix = "ruff --preview check --fix ."
Expand Down

0 comments on commit 9c6f5e0

Please sign in to comment.