Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
chore: release v0.3.18
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Apr 7, 2024
1 parent c38d665 commit ba40478
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.3.17"
".": "0.3.18"
}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# 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
* chore: run `go mod tidy` by @coffeebeats in https://github.com/coffeebeats/gdbuild/pull/137


**Full Changelog**: https://github.com/coffeebeats/gdbuild/compare/v0.3.17...v0.3.18

## 0.3.17 (2024-04-07)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion cmd/gdbuild/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions scripts/install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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 ------------------------ #
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ----------------------------- #
Expand Down

0 comments on commit ba40478

Please sign in to comment.