From a5a4387f31b08f7572669f747c3ecee0ce4662ea Mon Sep 17 00:00:00 2001 From: aschlean Date: Fri, 8 May 2026 16:14:51 +0200 Subject: [PATCH] release: v0.3.0 --- .github/SECURITY.md | 1 + pyproject.toml | 4 ++-- src/golf/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 6173a3b5..c32b9d49 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -3,6 +3,7 @@ ## Supported Versions | Version | Supported | | ------- | ------------------ | +| 0.3.0 | :white_check_mark: | | 0.2.19 | :white_check_mark: | | 0.2.18 | :white_check_mark: | | 0.2.17 | :white_check_mark: | diff --git a/pyproject.toml b/pyproject.toml index 5b275ef8..5cf72c13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "golf-mcp" -version = "0.3.0rc5" +version = "0.3.0" description = "Framework for building MCP servers" authors = [ {name = "Antoni Gmitruk", email = "antoni@golf.dev"} @@ -73,7 +73,7 @@ golf = ["examples/**/*"] [tool.poetry] name = "golf-mcp" -version = "0.3.0rc5" +version = "0.3.0" description = "Framework for building MCP servers with zero boilerplate" authors = ["Antoni Gmitruk "] license = "Apache-2.0" diff --git a/src/golf/__init__.py b/src/golf/__init__.py index 2e9bbc0b..ca2141a1 100644 --- a/src/golf/__init__.py +++ b/src/golf/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.3.0rc5" +__version__ = "0.3.0" from golf.decorators import prompt, resource, tool