From f9d0b2d0ad5355bc47532cfdcf303dc41bf59f4a Mon Sep 17 00:00:00 2001 From: William Fawcett Date: Wed, 29 Apr 2026 19:38:59 +0100 Subject: [PATCH] release: bump to 1.0.0, drop alpha messaging, add project URLs - Version bumped 0.0.1 -> 1.0.0 - Development Status classifier bumped from "3 - Alpha" to "5 - Production/Stable" - Dropped the "Status: alpha (v0.0.1) -- work in progress" blockquote from the README - Added [tool.poetry.urls] table with Repository and Issues links so package metadata exposes the canonical URLs No code changes; no test or lint impact. --- README.md | 4 ---- pyproject.toml | 8 ++++++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c63ec73..cc6c88d 100644 --- a/README.md +++ b/README.md @@ -9,10 +9,6 @@ An [MCP](https://modelcontextprotocol.io/) server that exposes of MCP tools — dataset discovery, metadata extraction, analysis primitives, and AI-assisted GEE Python code generation. -> **Status: alpha (v0.0.1) — work in progress.** APIs, tool names, and -> wire formats may change without notice. Not yet recommended for -> production use. - ## Tools The server registers the following MCP tools, grouped by purpose. diff --git a/pyproject.toml b/pyproject.toml index 9eed6cc..9f60248 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "gee-mcp" -version = "0.0.1" +version = "1.0.0" description = "MCP server for Google Earth Engine" authors = [ "rramosp", @@ -12,7 +12,7 @@ license = "MIT" keywords = ["mcp", "earth-engine", "gee", "earth-observation"] classifiers = [ - "Development Status :: 3 - Alpha", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Intended Audience :: Science/Research", "Topic :: Scientific/Engineering :: GIS", @@ -24,6 +24,10 @@ classifiers = [ "Programming Language :: Python :: 3 :: Only", ] +[tool.poetry.urls] +Repository = "https://github.com/FrontierDevelopmentLab/gee-mcp" +Issues = "https://github.com/FrontierDevelopmentLab/gee-mcp/issues" + [tool.poetry.dependencies] python = "^3.11"