Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bumpver.toml
Original file line number Diff line number Diff line change
@@ -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}"
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,13 @@ jobs:
with:
app_id: ${{ secrets.HAWKY_APP_ID }}
private_key: ${{ secrets.HAWKY_APP_PRIVATE_KEY }}
- name: Set up git for pushing
- name: Set up git for pulling latest
run: |
git remote set-url origin https://x-access-token:${{ steps.generate_token.outputs.token }}@github.com/${{ github.repository }}.git
- name: Fetch and checkout latest main
run: |
git fetch origin main
git checkout origin/main
- name: Get version from pyproject.toml
id: get_version
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"}]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion stackhawk-mcp.dxt
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion stackhawk_mcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = "[email protected]"