Release v1.3.0
This commit is contained in:
parent
1b07f9430b
commit
9aa93c4933
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
@ -37,7 +37,7 @@ jobs:
|
|||||||
VERSION="${{ github.ref_name }}"
|
VERSION="${{ github.ref_name }}"
|
||||||
VERSION="${VERSION#v}"
|
VERSION="${VERSION#v}"
|
||||||
echo "BUILD_VERSION=${VERSION}" >> $GITHUB_OUTPUT
|
echo "BUILD_VERSION=${VERSION}" >> $GITHUB_OUTPUT
|
||||||
echo "::debug::Set BUILD_VERSION to ${VERSION}"
|
echo "Set BUILD_VERSION to ${VERSION}"
|
||||||
else
|
else
|
||||||
SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-8)
|
SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-8)
|
||||||
TIMESTAMP=$(date +"%Y%m%d-%H%M%S")
|
TIMESTAMP=$(date +"%Y%m%d-%H%M%S")
|
||||||
@ -49,7 +49,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
FULL_VERSION="${BASE_VERSION}-${SHORT_SHA}-${TIMESTAMP}"
|
FULL_VERSION="${BASE_VERSION}-${SHORT_SHA}-${TIMESTAMP}"
|
||||||
echo "BUILD_VERSION=${FULL_VERSION}" >> $GITHUB_OUTPUT
|
echo "BUILD_VERSION=${FULL_VERSION}" >> $GITHUB_OUTPUT
|
||||||
echo "::debug::Set BUILD_VERSION to ${FULL_VERSION}"
|
echo "Set BUILD_VERSION to ${FULL_VERSION}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
- name: Update version in files
|
- name: Update version in files
|
||||||
@ -76,7 +76,7 @@ jobs:
|
|||||||
target/GhydraMCP-*.zip
|
target/GhydraMCP-*.zip
|
||||||
bridge_mcp_hydra.py
|
bridge_mcp_hydra.py
|
||||||
|
|
||||||
- name: Generate Release Notes
|
- name: Generate Release Notes from CHANGELOG
|
||||||
if: github.ref_type == 'tag'
|
if: github.ref_type == 'tag'
|
||||||
id: generate_notes
|
id: generate_notes
|
||||||
run: |
|
run: |
|
||||||
@ -84,25 +84,13 @@ jobs:
|
|||||||
VERSION="${{ github.ref_name }}"
|
VERSION="${{ github.ref_name }}"
|
||||||
VERSION="${VERSION#v}"
|
VERSION="${VERSION#v}"
|
||||||
|
|
||||||
# Get commit messages since last tag
|
# Extract the changelog section for this version
|
||||||
LAST_TAG=$(git describe --tags --abbrev=0 "v${VERSION}^" 2>/dev/null || echo "")
|
awk -v version="$VERSION" '
|
||||||
if [ -z "$LAST_TAG" ]; then
|
BEGIN { print=0 }
|
||||||
# If no previous tag exists, get all commits
|
/^## \['version'\]/ { print=1; next }
|
||||||
COMMITS=$(git log --pretty=format:"- %s" --no-merges)
|
/^## \[/ && print { print=0; next }
|
||||||
else
|
print { print $0 }
|
||||||
# Get commits between last tag and current tag
|
' CHANGELOG.md > release_notes.md
|
||||||
COMMITS=$(git log --pretty=format:"- %s" --no-merges ${LAST_TAG}..HEAD)
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Create release notes file
|
|
||||||
cat > release_notes.md << EOF
|
|
||||||
# Release v${VERSION}
|
|
||||||
|
|
||||||
## What's Changed
|
|
||||||
${COMMITS}
|
|
||||||
|
|
||||||
**Full Changelog**: https://github.com/${{ github.repository }}/compare/${LAST_TAG}...v${VERSION}
|
|
||||||
EOF
|
|
||||||
|
|
||||||
echo "RELEASE_NOTES_FILE=release_notes.md" >> $GITHUB_OUTPUT
|
echo "RELEASE_NOTES_FILE=release_notes.md" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
|||||||
21
CHANGELOG.md
21
CHANGELOG.md
@ -2,11 +2,12 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.3.0] - 2025-04-02
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Added docstrings for all @mcp.tool functions
|
- Added docstrings for all @mcp.tool functions
|
||||||
- Variable manipulation tools (rename/retype variables)
|
- Variable manipulation tools (rename/retype variables)
|
||||||
@ -32,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Reorganized imports in bridge_mcp_hydra.py
|
- Reorganized imports in bridge_mcp_hydra.py
|
||||||
- Updated MANIFEST.MF with more detailed description
|
- Updated MANIFEST.MF with more detailed description
|
||||||
|
|
||||||
## [1.2.0] - 2024-06-15
|
## [1.2] - 2025-03-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Enhanced function analysis capabilities
|
- Enhanced function analysis capabilities
|
||||||
@ -43,10 +44,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- Improved error handling in API calls
|
- Improved error handling in API calls
|
||||||
- Optimized performance for large binaries
|
- Optimized performance for large binaries
|
||||||
|
|
||||||
## [1.0.0] - 2024-03-15
|
## [1.1] - 2025-03-30
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- Initial release of GhydraMCP bridge
|
- Initial release of GhydraMCP bridge
|
||||||
- Basic Ghidra instance management tools
|
- Basic Ghidra instance management tools
|
||||||
- Function analysis tools
|
- Function analysis tools
|
||||||
- Variable manipulation tools
|
- Variable manipulation tools
|
||||||
|
|
||||||
|
## [1.0] - 2025-03-24
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Initial project setup
|
||||||
|
- Basic MCP bridge functionality
|
||||||
|
|
||||||
|
[unreleased]: https://github.com/teal-bauer/GhydraMCP/compare/v1.3.0...HEAD
|
||||||
|
[1.3.0]: https://github.com/teal-bauer/GhydraMCP/compare/v1.2...v1.3.0
|
||||||
|
[1.2]: https://github.com/teal-bauer/GhydraMCP/compare/v1.1...v1.2
|
||||||
|
[1.1]: https://github.com/teal-bauer/GhydraMCP/compare/1.0...v1.1
|
||||||
|
[1.0]: https://github.com/teal-bauer/GhydraMCP/releases/tag/1.0
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user