From 5abba096b6cd51797caa6f0e2a5e0af7e2d428c7 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 26 Jan 2026 11:10:49 +0000 Subject: [PATCH] Update version to 2.0.0 and add testing warning - Changed version from 2.1.0-alpha.1 to 2.0.0 - Added warning that this version has not been systematically tested - This is a complete architectural rewrite from legacy v1.x --- README.md | 9 +++++++-- pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d4be5e6..3b4baaf 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,16 @@ -# QuantCoder 2.1.0 +# QuantCoder 2.0.0 -[![Version](https://img.shields.io/badge/version-2.1.0-green)](https://github.com/SL-Mar/quantcoder-cli) +[![Version](https://img.shields.io/badge/version-2.0.0-green)](https://github.com/SL-Mar/quantcoder-cli) [![Python](https://img.shields.io/badge/python-3.10+-blue)](https://python.org) [![License](https://img.shields.io/badge/license-Apache%202.0-blue)](LICENSE) > **AI-powered CLI for generating QuantConnect trading algorithms from research articles** +> **Note** +> This version (v2.0.0) has not been systematically tested yet. +> It represents a complete architectural rewrite from the legacy v1.x codebase. +> Use with caution and report any issues. + Features: Multi-agent system, AlphaEvolve-inspired evolution, autonomous learning, MCP integration. --- diff --git a/pyproject.toml b/pyproject.toml index 18eefe4..e010c1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "quantcoder-cli" -version = "2.1.0-alpha.1" +version = "2.0.0" description = "A modern CLI coding assistant for generating QuantConnect trading algorithms from research articles with AlphaEvolve-inspired evolution" readme = "README.md" requires-python = ">=3.10"