Skip to content

Commit 81ec553

Browse files
authored
Merge branch 'main' into docs/cookbook-chat-rag-v2
2 parents 97c214f + 4a88893 commit 81ec553

5 files changed

Lines changed: 3865 additions & 122 deletions

File tree

CLAUDE.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,20 @@ uv run pytest tests/ -v
5858

5959
No exceptions.
6060

61+
## Versioning & Releases
62+
63+
Use **semantic-release** to manage versions. Prefer **patch bumps (+0.0.1)** as much as possible — reserve minor (+0.1.0) for genuinely new user-facing features and major (+1.0.0) for breaking changes only.
64+
65+
Commit message conventions that drive the bump:
66+
67+
- `fix:` → patch (+0.0.1) — **default choice** for most changes
68+
- `docs:` → patch (+0.0.1) — documentation updates
69+
- `chore:` → patch (+0.0.1) — maintenance, tooling, deps
70+
- `feat:` → minor (+0.1.0) — only for meaningful new features
71+
- `BREAKING CHANGE:` footer or `!` suffix → major (+1.0.0) — only for breaking API changes
72+
73+
When in doubt, frame the change as `fix:`, `docs:`, or `chore:` to keep the bump at patch level.
74+
6175
## Architecture
6276

6377
**Core Components:**

cookbook/company-info/scrapegraph_sdk.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
"outputs": [],
197197
"source": [
198198
"from pydantic import BaseModel, Field\n",
199-
"from typing import List, Dict, Optional\n",
199+
"from typing import List\n",
200200
"\n",
201201
"# Schema for founder information\n",
202202
"class FounderSchema(BaseModel):\n",

cookbook/github-trending/scrapegraph_sdk.ipynb

Lines changed: 2859 additions & 0 deletions
Large diffs are not rendered by default.

cookbook/wired-news/scrapegraph_sdk.ipynb

Lines changed: 874 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)