From 455a7b72ddeacfd4405cf31eeadfefb40be0c381 Mon Sep 17 00:00:00 2001 From: KC Berg Date: Mon, 14 Jul 2025 14:46:36 -0600 Subject: [PATCH] revert: version strings to 0.1.7 from 1.0.1 and update release workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .bumpver.toml | 2 +- .github/workflows/release.yml | 11 ++++------- README.md | 2 +- pyproject.toml | 2 +- stackhawk-mcp.dxt | 2 +- stackhawk_mcp/__init__.py | 2 +- 6 files changed, 9 insertions(+), 12 deletions(-) diff --git a/.bumpver.toml b/.bumpver.toml index 3e7f4d2..44e046f 100644 --- a/.bumpver.toml +++ b/.bumpver.toml @@ -1,5 +1,5 @@ [bumpver] -current_version = "1.0.1" +current_version = "0.1.7" version_pattern = "MAJOR.MINOR.PATCH" commit_message = "bump: version {old_version} → {new_version}" tag_message = "v{new_version}" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index adec740..db7a948 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,9 +3,6 @@ name: Release on: workflow_dispatch: -permissions: - id-token: write - jobs: approval: name: Manual Approval @@ -45,8 +42,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 - fetch-tags: true + persist-credentials: 'false' - name: Set up Python uses: actions/setup-python@v5 with: @@ -66,11 +62,12 @@ jobs: name: Publish Docker image runs-on: ubuntu-latest needs: tag + permissions: + id-token: write steps: - uses: actions/checkout@v4 with: - fetch-depth: 0 - fetch-tags: true + persist-credentials: 'false' - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx diff --git a/README.md b/README.md index 992d2a4..31fa818 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # StackHawk MCP Server -**Current Version: 1.0.1** +**Current Version: 0.1.7** _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 78d09a9..c933066 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "stackhawk-mcp" -version = "1.0.1" +version = "0.1.7" 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 f100aff..f4ee153 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.0.1", + "version": "0.1.7", "author": "StackHawk", "license": "MIT", "homepage": "https://github.com/stackhawk/stackhawk-mcp", diff --git a/stackhawk_mcp/__init__.py b/stackhawk_mcp/__init__.py index a1d0115..ceae184 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.0.1" +__version__ = "0.1.7" __author__ = "StackHawk MCP Team" __email__ = "support@stackhawk.com" \ No newline at end of file