From a9fda2c454aafe53c77d26d18ebd76d60bf3ff1e Mon Sep 17 00:00:00 2001 From: KC Berg Date: Fri, 11 Jul 2025 15:09:19 -0600 Subject: [PATCH 1/2] chore: update all version references to 1.0.2 --- .bumpver.toml | 2 +- README.md | 2 +- pyproject.toml | 2 +- stackhawk-mcp.dxt | 2 +- stackhawk_mcp/__init__.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpver.toml b/.bumpver.toml index afa97a4..53dc162 100644 --- a/.bumpver.toml +++ b/.bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "1.1.0" +current_version = "1.0.2" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump: version {old_version} → {new_version}" tag_message = "v{new_version}" diff --git a/README.md b/README.md index 0b6986c..d6d3758 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # StackHawk MCP Server -**Current Version: 1.1.0** +**Current Version: 1.0.2** _Requires Python 3.10 or higher_ A Model Context Protocol (MCP) server for integrating with StackHawk's security scanning platform. Provides security analytics, YAML configuration management, sensitive data/threat surface analysis, and anti-hallucination tools for LLMs. diff --git a/pyproject.toml b/pyproject.toml index 021e69c..db2481f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "stackhawk-mcp" -version = "1.1.0" +version = "1.0.2" description = "StackHawk MCP Server for Security Analytics and Developer Integration" authors = [{name = "StackHawk, Inc.", email = "support@stackhawk.com"}] license = "Apache-2.0" diff --git a/stackhawk-mcp.dxt b/stackhawk-mcp.dxt index aaa7af8..dbf550c 100644 --- a/stackhawk-mcp.dxt +++ b/stackhawk-mcp.dxt @@ -1,7 +1,7 @@ { "name": "stackhawk-mcp", "description": "StackHawk MCP Server for security testing, analytics, YAML validation, and vulnerability management.", - "version": "1.1.0", + "version": "1.0.2", "author": "StackHawk", "license": "MIT", "homepage": "https://github.com/stackhawk/stackhawk-mcp", diff --git a/stackhawk_mcp/__init__.py b/stackhawk_mcp/__init__.py index 19157e1..da3542c 100644 --- a/stackhawk_mcp/__init__.py +++ b/stackhawk_mcp/__init__.py @@ -5,6 +5,6 @@ with the StackHawk API through the Model Context Protocol (MCP). """ -__version__ = "1.1.0" +__version__ = "1.0.2" __author__ = "StackHawk MCP Team" __email__ = "support@stackhawk.com" \ No newline at end of file From 69d390687d47b4e7fda35b813aa1c3a0ccb46116 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Fri, 11 Jul 2025 15:09:42 -0600 Subject: [PATCH 2/2] chore: update prepare-release workflow (fetch latest main with auth, etc) --- .github/workflows/prepare-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/prepare-release.yml b/.github/workflows/prepare-release.yml index 606332d..c6a7ae0 100644 --- a/.github/workflows/prepare-release.yml +++ b/.github/workflows/prepare-release.yml @@ -151,4 +151,4 @@ jobs: run: bumpver update --patch --commit - name: Push patch version bump commit run: | - git push \ No newline at end of file + git push origin HEAD:main \ No newline at end of file