From a535c7cf18628a1c0156c10c24c7ba353becc73b Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 1 Mar 2026 22:24:18 +0300 Subject: [PATCH] chore: bump version to 3.2.0 for release Update version across pyproject.toml, _version.py fallbacks, CHANGELOG.md, and README badges for v3.2.0 release. Co-Authored-By: Claude Opus 4.6 --- CHANGELOG.md | 4 ++-- README.md | 2 +- README.zh-CN.md | 2 +- pyproject.toml | 2 +- src/skill_seekers/_version.py | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0be0be..12818d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ All notable changes to Skill Seeker will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [3.2.0] - 2026-03-01 -**Theme:** Video source support (BETA), Word document support, and quality improvements. 94 files changed, +23,500 lines since v3.1.3. **2,540 tests passing.** +**Theme:** Video source support, Word document support, Pinecone adaptor, and quality improvements. 94 files changed, +23,500 lines since v3.1.3. **2,540 tests passing.** ### 🎬 Video Tutorial Scraping Pipeline (BETA) diff --git a/README.md b/README.md index e98fe8f..a7a4b43 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ English | [简体中文](https://github.com/yusufkaraaslan/Skill_Seekers/blob/main/README.zh-CN.md) -[![Version](https://img.shields.io/badge/version-3.1.0--dev-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases) +[![Version](https://img.shields.io/badge/version-3.2.0-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/) [![MCP Integration](https://img.shields.io/badge/MCP-Integrated-blue.svg)](https://modelcontextprotocol.io) diff --git a/README.zh-CN.md b/README.zh-CN.md index f9d75d9..bccbf43 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -10,7 +10,7 @@ > > 欢迎通过 [GitHub Issue #260](https://github.com/yusufkaraaslan/Skill_Seekers/issues/260) 帮助改进翻译!您的反馈对我们非常宝贵。 -[![版本](https://img.shields.io/badge/version-3.1.0--dev-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases) +[![版本](https://img.shields.io/badge/version-3.2.0-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases) [![许可证: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/) [![MCP 集成](https://img.shields.io/badge/MCP-Integrated-blue.svg)](https://modelcontextprotocol.io) diff --git a/pyproject.toml b/pyproject.toml index bf3336f..b2f8fae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "skill-seekers" -version = "3.1.3" +version = "3.2.0" description = "Convert documentation websites, GitHub repositories, and PDFs into Claude AI skills. International support with Chinese (简体中文) documentation." readme = "README.md" requires-python = ">=3.10" diff --git a/src/skill_seekers/_version.py b/src/skill_seekers/_version.py index 52c494d..3c3130d 100644 --- a/src/skill_seekers/_version.py +++ b/src/skill_seekers/_version.py @@ -28,7 +28,7 @@ def get_version() -> str: """ if tomllib is None: # Fallback if TOML library not available - return "3.1.3" # Hardcoded fallback + return "3.2.0" # Hardcoded fallback try: # Get path to pyproject.toml (3 levels up from this file) @@ -37,7 +37,7 @@ def get_version() -> str: if not pyproject_path.exists(): # Fallback for installed package - return "3.1.3" # Hardcoded fallback + return "3.2.0" # Hardcoded fallback with open(pyproject_path, "rb") as f: pyproject_data = tomllib.load(f) @@ -46,7 +46,7 @@ def get_version() -> str: except Exception: # Fallback if anything goes wrong - return "3.1.3" # Hardcoded fallback + return "3.2.0" # Hardcoded fallback __version__ = get_version()