Skip to content

Commit 9c6f5e0

Browse files
Release v0.3.1 (#1001)
1 parent f5b4d2f commit 9c6f5e0

10 files changed

+46
-30
lines changed

.semversioner/0.3.1.json

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"changes": [
3+
{
4+
"description": "Add preflight check to check LLM connectivity.",
5+
"type": "patch"
6+
},
7+
{
8+
"description": "Add streaming support for local/global search to query cli",
9+
"type": "patch"
10+
},
11+
{
12+
"description": "Add support for both float and int on schema validation for community report generation",
13+
"type": "patch"
14+
},
15+
{
16+
"description": "Avoid running index on gh-pages publishing",
17+
"type": "patch"
18+
},
19+
{
20+
"description": "Implement Index API",
21+
"type": "patch"
22+
},
23+
{
24+
"description": "Improves filtering for data dir inferring",
25+
"type": "patch"
26+
},
27+
{
28+
"description": "Update to nltk 3.9.1",
29+
"type": "patch"
30+
}
31+
],
32+
"created_at": "2024-08-21T22:46:19+00:00",
33+
"version": "0.3.1"
34+
}

.semversioner/next-release/minor-20240816080238245653.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/minor-20240819154736579383.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20240812232353903544.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20240814191012840742.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20240816201609674515.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20240819221559462799.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.semversioner/next-release/patch-20240820202507768622.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
# Changelog
22
Note: version releases in the 0.x.y range may introduce breaking changes.
33

4+
## 0.3.1
5+
6+
- patch: Add preflight check to check LLM connectivity.
7+
- patch: Add streaming support for local/global search to query cli
8+
- patch: Add support for both float and int on schema validation for community report generation
9+
- patch: Avoid running index on gh-pages publishing
10+
- patch: Implement Index API
11+
- patch: Improves filtering for data dir inferring
12+
- patch: Update to nltk 3.9.1
13+
414
## 0.3.0
515

616
- minor: Implement auto templating API.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
22
name = "graphrag"
33
# Maintainers: do not change the version here manually, use ./scripts/release.sh
4-
version = "0.3.0"
4+
version = "0.3.1"
55
description = ""
66
authors = [
77
"Alonso Guevara Fernández <alonsog@microsoft.com>",
@@ -117,7 +117,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n
117117
_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'
118118
_semversioner_release = "semversioner release"
119119
_semversioner_changelog = "semversioner changelog > CHANGELOG.md"
120-
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(semversioner current-version)"
120+
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(poetry run semversioner current-version)"
121121
coverage_report = 'coverage report --omit "**/tests/**" --show-missing'
122122
check_format = 'ruff format . --check --preview'
123123
fix = "ruff --preview check --fix ."

0 commit comments

Comments
 (0)