From 66b7f9c4f67091d03a222289a96b9da548694c4e Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 26 Oct 2025 13:16:54 +0300 Subject: [PATCH] chore: Bump version to v1.3.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update version numbers across project for v1.3.0 release: - CHANGELOG.md: Move [Unreleased] → [1.3.0] - 2025-10-26 - README.md: Update version badge 1.2.0 → 1.3.0 - cli/__init__.py: Update __version__ = "1.3.0" 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- CHANGELOG.md | 7 +++++++ README.md | 2 +- cli/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e356c29..31ba5c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added +- (No unreleased changes yet) + +--- + +## [1.3.0] - 2025-10-26 + ### Added - Refactoring & Performance Improvements - **Async/Await Support for Parallel Scraping** (2-3x performance boost) - `--async` flag to enable async mode diff --git a/README.md b/README.md index c8dfbbb..4e2ee42 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # Skill Seeker -[![Version](https://img.shields.io/badge/version-1.2.0-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases/tag/v1.2.0) +[![Version](https://img.shields.io/badge/version-1.3.0-blue.svg)](https://github.com/yusufkaraaslan/Skill_Seekers/releases/tag/v1.3.0) [![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/cli/__init__.py b/cli/__init__.py index de20c9d..0a6b120 100644 --- a/cli/__init__.py +++ b/cli/__init__.py @@ -28,7 +28,7 @@ except ImportError: open_folder = None read_reference_files = None -__version__ = "1.2.0" +__version__ = "1.3.0" __all__ = [ "LlmsTxtDetector",