diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 18550d5..2e9c48c 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "2.0.4" + ".": "2.0.5" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e505df..c67b295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.5](https://github.com/untrustedmodders/plugify-module-golang/compare/v2.0.4...v2.0.5) (2025-10-06) + + +### Bug Fixes + +* build issue ([43e72a0](https://github.com/untrustedmodders/plugify-module-golang/commit/43e72a0f9ec9e81a5f26aa61748911fcc45aec0f)) + ## [2.0.4](https://github.com/untrustedmodders/plugify-module-golang/compare/v2.0.3...v2.0.4) (2025-10-06) diff --git a/src/module.cpp b/src/module.cpp index f953f13..0602e5c 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -184,7 +184,7 @@ void GoLanguageModule::GetNativeMethod(std::string_view methodName, MemAddr* add _provider->Log(std::format(LOG_PREFIX "GetNativeMethod failed to find: '{}'", methodName), Severity::Fatal); } -const Method* GoLanguageModule::FindMethod(std::string_view name) { +std::shared_ptr GoLanguageModule::FindMethod(std::string_view name) { if (auto separated = Split(name, "."); separated.size() == 2) { if (auto plugin = _provider->FindExtension(separated[0])) { for (const auto& method : plugin->GetMethods()) { diff --git a/version.txt b/version.txt index 2165f8f..e010258 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -2.0.4 +2.0.5