Skip to content

Commit 6c028de

Browse files
RahulHereRahulHere
authored andcommitted
Bump version to 0.1.0.dev20260227124047
Changes: - Rename package from gopher-orch to gopher-security-mcp - Add centralized version management - Fix native library loading
1 parent ece1ab5 commit 6c028de

15 files changed

Lines changed: 23 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0-20260227-124047] - 2026-02-27
11+
1012
### Changed
1113

1214
- **Package Rename** from `gopher-orch` to `gopher-security-mcp`
@@ -22,6 +24,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2224
- Add `python scripts/update_version.py <version>` script
2325
- Workflow now reads version from `pyproject.toml` instead of hardcoded env
2426

27+
### Fixed
28+
29+
- Fix native library loading - keep library name as `libgopher-orch` (from C++ project)
30+
- Make `gopher_orch_set_log_level` function optional for compatibility
31+
2532
## [0.1.0] - 2026-02-08
2633

2734
### Added
@@ -54,5 +61,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5461

5562
---
5663

57-
[Unreleased]: https://github.com/GopherSecurity/gopher-mcp-python/compare/v0.1.0...HEAD
64+
[Unreleased]: https://github.com/GopherSecurity/gopher-mcp-python/compare/v0.1.0-20260227-124047...HEAD
65+
[0.1.0-20260227-124047]: https://github.com/GopherSecurity/gopher-mcp-python/compare/v0.1.0...v0.1.0-20260227-124047
5866
[0.1.0]: https://github.com/GopherSecurity/gopher-mcp-python/releases/tag/v0.1.0

gopher_security_mcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
from gopher_security_mcp.server_config import ServerConfig
3030
from gopher_security_mcp.ffi import GopherOrchLibrary
3131

32-
__version__ = "0.1.0.dev20260226145002"
32+
__version__ = "0.1.0.dev20260227124047"
3333

3434
__all__ = [
3535
# Main classes

packages/darwin-arm64/gopher_security_mcp_native_darwin_arm64/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import os
88
from pathlib import Path
99

10-
__version__ = "0.1.0.dev20260226145002"
10+
__version__ = "0.1.0.dev20260227124047"
1111

1212
# Platform identifier
1313
PLATFORM = "darwin"

packages/darwin-arm64/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gopher-security-mcp-native-darwin-arm64"
7-
version = "0.1.0.dev20260226145002"
7+
version = "0.1.0.dev20260227124047"
88
description = "Native library for gopher-security-mcp (macOS ARM64)"
99
readme = "README.md"
1010
license = {text = "MIT"}

packages/darwin-x64/gopher_security_mcp_native_darwin_x64/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import os
88
from pathlib import Path
99

10-
__version__ = "0.1.0.dev20260226145002"
10+
__version__ = "0.1.0.dev20260227124047"
1111

1212
# Platform identifier
1313
PLATFORM = "darwin"

packages/darwin-x64/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gopher-security-mcp-native-darwin-x64"
7-
version = "0.1.0.dev20260226145002"
7+
version = "0.1.0.dev20260227124047"
88
description = "Native library for gopher-security-mcp (macOS Intel)"
99
readme = "README.md"
1010
license = {text = "MIT"}

packages/linux-arm64/gopher_security_mcp_native_linux_arm64/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import os
88
from pathlib import Path
99

10-
__version__ = "0.1.0.dev20260226145002"
10+
__version__ = "0.1.0.dev20260227124047"
1111

1212
# Platform identifier
1313
PLATFORM = "linux"

packages/linux-arm64/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gopher-security-mcp-native-linux-arm64"
7-
version = "0.1.0.dev20260226145002"
7+
version = "0.1.0.dev20260227124047"
88
description = "Native library for gopher-security-mcp (Linux ARM64)"
99
readme = "README.md"
1010
license = {text = "MIT"}

packages/linux-x64/gopher_security_mcp_native_linux_x64/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import os
88
from pathlib import Path
99

10-
__version__ = "0.1.0.dev20260226145002"
10+
__version__ = "0.1.0.dev20260227124047"
1111

1212
# Platform identifier
1313
PLATFORM = "linux"

packages/linux-x64/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "gopher-security-mcp-native-linux-x64"
7-
version = "0.1.0.dev20260226145002"
7+
version = "0.1.0.dev20260227124047"
88
description = "Native library for gopher-security-mcp (Linux x64)"
99
readme = "README.md"
1010
license = {text = "MIT"}

0 commit comments

Comments
 (0)