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 = "0.1.8"
current_version = "1.0.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump: version {old_version} → {new_version}"
tag_message = "v{new_version}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ jobs:
pip install .
- name: Set git user for HawkyMcBuilderFace bot
run: |
git config user.name "HawkyMcBuilderFace[bot]"
git config user.email "hawkymcbuilderface[bot]@users.noreply.github.com"
git config user.name "${{ secrets.HAWKY_APP_USER }}"
git config user.email "${{ secrets.HAWKY_APP_USER_EMAIL }}"
- name: Bump patch version with bumpver
run: bumpver update --patch --commit
- name: Push version bump commit
Expand Down
26 changes: 20 additions & 6 deletions .github/workflows/prepare-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@ name: Prepare Release

on:
workflow_dispatch:
inputs:
bump_type:
description: 'Type of version bump'
required: true
default: 'minor'
type: choice
options:
- minor
- major

permissions:
contents: write
Expand All @@ -21,8 +30,8 @@ jobs:
echo "should_run=true" >> $GITHUB_OUTPUT
fi

bump-minor-version:
name: Bump Minor Version
bump-version:
name: Bump Version
if: needs.check-bumpver.outputs.should_run == 'true'
needs: check-bumpver
runs-on: ubuntu-latest
Expand Down Expand Up @@ -52,10 +61,15 @@ jobs:
git remote set-url origin https://x-access-token:${{ steps.generate_token.outputs.token }}@github.com/${{ github.repository }}.git
- name: Set git user for HawkyMcBuilderFace bot
run: |
git config user.name "HawkyMcBuilderFace[bot]"
git config user.email "hawkymcbuilderface[bot]@users.noreply.github.com"
- name: Bump minor version with bumpver
run: bumpver update --minor --commit
git config user.name "${{ secrets.HAWKY_APP_USER }}"
git config user.email "${{ secrets.HAWKY_APP_USER_EMAIL }}"
- name: Bump version with bumpver
run: |
if [[ "${{ github.event.inputs.bump_type }}" == "major" ]]; then
bumpver update --major --commit
else
bumpver update --minor --commit
fi
- name: Push version bump commit
run: |
git push origin HEAD:main
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: 0.1.8**
**Current Version: 1.0.0**
_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 = "0.1.8"
version = "1.0.0"
description = "StackHawk MCP Server for Security Analytics and Developer Integration"
authors = [{name = "StackHawk, Inc.", email = "support@stackhawk.com"}]
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": "0.1.8",
"version": "1.0.0",
"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__ = "0.1.8"
__version__ = "1.0.0"
__author__ = "StackHawk MCP Team"
__email__ = "support@stackhawk.com"