Release v0.3.1 (#1001)

This commit is contained in:
Alonso Guevara 2024-08-21 17:03:55 -06:00 committed by GitHub
parent f5b4d2fea5
commit 9c6f5e090a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 46 additions and 30 deletions

34
.semversioner/0.3.1.json Normal file
View File

@ -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"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Add streaming support for local/global search to query cli"
}

View File

@ -1,4 +0,0 @@
{
"type": "minor",
"description": "Implement Index API"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Improves filtering for data dir inferring"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Add support for both float and int on schema validation for community report generation"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Add preflight check to check LLM connectivity."
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Avoid running index on gh-pages publishing"
}

View File

@ -1,4 +0,0 @@
{
"type": "patch",
"description": "Update to nltk 3.9.1"
}

View File

@ -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.

View File

@ -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 <alonsog@microsoft.com>",
@ -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 ."