mirror of
https://github.com/microsoft/graphrag.git
synced 2025-06-26 23:19:58 +00:00
Release v0.3.1 (#1001)
This commit is contained in:
parent
f5b4d2fea5
commit
9c6f5e090a
34
.semversioner/0.3.1.json
Normal file
34
.semversioner/0.3.1.json
Normal 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"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "minor",
|
||||
"description": "Add streaming support for local/global search to query cli"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "minor",
|
||||
"description": "Implement Index API"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "patch",
|
||||
"description": "Improves filtering for data dir inferring"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "patch",
|
||||
"description": "Add support for both float and int on schema validation for community report generation"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "patch",
|
||||
"description": "Add preflight check to check LLM connectivity."
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "patch",
|
||||
"description": "Avoid running index on gh-pages publishing"
|
||||
}
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"type": "patch",
|
||||
"description": "Update to nltk 3.9.1"
|
||||
}
|
10
CHANGELOG.md
10
CHANGELOG.md
@ -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.
|
||||
|
@ -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 ."
|
||||
|
Loading…
x
Reference in New Issue
Block a user