From 15ce6c9230a59cc955c465b0a35269d060a78e55 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 00:54:23 +0000 Subject: [PATCH] chore(master): release 0.5.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 15 +++++++++++++++ version.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7180db..f1c1e58 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.4.10" + ".": "0.5.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b1131ab --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# Changelog + +## [0.5.0](https://github.com/go-python/gopy/compare/v0.4.10...v0.5.0) (2026-08-25) + + +### Features + +* add '3.12' testing & improve complex conversion ([#399](https://github.com/go-python/gopy/issues/399)) ([d39a31b](https://github.com/go-python/gopy/commit/d39a31b25439fe7c40370f9f28a24652c6fda372)) +* Add gopy version command & release-please pipeline ([#402](https://github.com/go-python/gopy/issues/402)) ([cd45651](https://github.com/go-python/gopy/commit/cd456511c8489801b34387a20d10f36472bcc329)) + + +### Build System + +* Append existing CFLAGS and LDFLAGS for CGO ([fc6df6c](https://github.com/go-python/gopy/commit/fc6df6c56ef1f1e4e36f4f936d287e13843c430c)) +* Append existing CFLAGS and LDFLAGS for CGO ([d709cba](https://github.com/go-python/gopy/commit/d709cba2c1014cac6fefeab17f02daef60ead761)) diff --git a/version.go b/version.go index efc2065..c8acb1b 100644 --- a/version.go +++ b/version.go @@ -7,7 +7,7 @@ package main var ( - Version = "v0.4.10" // x-release-please-version + Version = "v0.5.0" // x-release-please-version GitCommit = "unknown" VersionDate = "unknown" )