Skip to content

Commit 7376f14

Browse files
Release v0.2.2 (#872)
1 parent 85a5a61 commit 7376f14

7 files changed

+31
-18
lines changed

.semversioner/0.2.2.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"changes": [
3+
{
4+
"description": "Add a check if there is no community record added in local search context",
5+
"type": "patch"
6+
},
7+
{
8+
"description": "Add sepparate workflow for Python Tests",
9+
"type": "patch"
10+
},
11+
{
12+
"description": "Docs updates",
13+
"type": "patch"
14+
},
15+
{
16+
"description": "Run smoke tests on 4o",
17+
"type": "patch"
18+
}
19+
],
20+
"created_at": "2024-08-08T22:40:57+00:00",
21+
"version": "0.2.2"
22+
}

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

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

-4
This file was deleted.

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
2+
23
Note: version releases in the 0.x.y range may introduce breaking changes.
34

5+
## 0.2.2
6+
7+
- patch: Add a check if there is no community record added in local search context
8+
- patch: Add sepparate workflow for Python Tests
9+
- patch: Docs updates
10+
411
## 0.2.1
512

613
- patch: Added default columns for vector store at create_pipeline_config. No change for other cases.

pyproject.toml

+2-2
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.2.1"
4+
version = "0.2.2"
55
description = ""
66
authors = [
77
"Alonso Guevara Fernández <[email protected]>",
@@ -115,7 +115,7 @@ _convert_local_search_nb = 'jupyter nbconvert --output-dir=docsite/posts/query/n
115115
_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'
116116
_semversioner_release = "semversioner release"
117117
_semversioner_changelog = "semversioner changelog > CHANGELOG.md"
118-
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value \"$(semversioner current-version)\" pyproject.toml"
118+
_semversioner_update_toml_version = "update-toml update --path tool.poetry.version --value $(semversioner current-version)"
119119
coverage_report = 'coverage report --omit "**/tests/**" --show-missing'
120120
check_format = 'ruff format . --check --preview'
121121
fix = "ruff --preview check --fix ."

0 commit comments

Comments
 (0)