diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cc96a06..f2a0aa5 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.17" + ".": "0.3.18" } diff --git a/CHANGELOG.md b/CHANGELOG.md index e5f546e..f682e14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.3.18 (2024-04-07) + +## What's Changed +* fix(export): numerous fixes to encryption, pack files, and presets by @coffeebeats in https://github.com/coffeebeats/gdbuild/pull/135 + + +**Full Changelog**: https://github.com/coffeebeats/gdbuild/compare/v0.3.17...v0.3.18 + ## 0.3.17 (2024-04-07) ## What's Changed diff --git a/cmd/gdbuild/main.go b/cmd/gdbuild/main.go index 2578c75..14deec4 100644 --- a/cmd/gdbuild/main.go +++ b/cmd/gdbuild/main.go @@ -52,7 +52,7 @@ func main() { //nolint:funlen app := &cli.App{ Name: "gdbuild", - Version: "v0.3.17", // x-release-please-version + Version: "v0.3.18", // x-release-please-version Suggest: true, UseShortOptionHandling: true, diff --git a/scripts/install.ps1 b/scripts/install.ps1 index 8e5826b..f14b355 100644 --- a/scripts/install.ps1 +++ b/scripts/install.ps1 @@ -10,7 +10,7 @@ # NOTE: Unlike the 'install.sh' counterpart, this script exclusively installs # the 'gdbuild' binary for 64-bit Windows. If an alternative 'gdbuild' binary is # required, follow the documentation for an alternative means of installation: -# https://github.com/coffeebeats/gdbuild/blob/v0.3.17/docs/installation.md # x-release-please-version +# https://github.com/coffeebeats/gdbuild/blob/v0.3.18/docs/installation.md # x-release-please-version <# .SYNOPSIS @@ -34,7 +34,7 @@ $env:GDBUILD_HOME\bin\gdbuild.exe .NOTES - Version: 0.3.17 # x-release-please-version + Version: 0.3.18 # x-release-please-version Author: https://github.com/coffeebeats .LINK @@ -48,7 +48,7 @@ Param ( [Switch] $NoModifyPath = $False, # Version - override the specific version of 'gdbuild' to install - [String] $Version = "v0.3.17" # x-release-please-version + [String] $Version = "v0.3.18" # x-release-please-version ) # ------------------------- Function: Get-GdBuildHome ------------------------ # diff --git a/scripts/install.sh b/scripts/install.sh index b6f218d..faf9981 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -110,7 +110,7 @@ parse_params "$@" # ------------------------------ Define: Version ----------------------------- # -GDBUILD_VERSION="${GDBUILD_VERSION:-0.3.17}" # x-release-please-version +GDBUILD_VERSION="${GDBUILD_VERSION:-0.3.18}" # x-release-please-version GDBUILD_VERSION="v${GDBUILD_VERSION#v}" # ----------------------------- Define: Platform ----------------------------- #