Skip to content

Commit 408d59f

Browse files
authored
Merge branch 'main' into docs/cookbook-homes-forsale-v2
2 parents 140e243 + 4a88893 commit 408d59f

5 files changed

Lines changed: 3865 additions & 123 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 & 2 deletions
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",
@@ -1892,7 +1892,6 @@
18921892
"id": "dUi2LtMLRDDR"
18931893
},
18941894
"source": [
1895-
"\n",
18961895
"\n",
18971896
"- 🚀 **Get your API Key:** [ScrapeGraphAI Dashboard](https://dashboard.scrapegraphai.com) \n",
18981897
"- 🐙 **GitHub:** [ScrapeGraphAI GitHub](https://github.com/scrapegraphai) \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)