Skip to content

Commit

Permalink
chore: release v0.6.26
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Nov 3, 2024
1 parent ce5ba72 commit 84ec513
Show file tree
Hide file tree
Showing 5 changed files with 27 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.6.25"
".": "0.6.26"
}
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## 0.6.26 (2024-11-03)

## What's Changed
* chore(deps): bump github.com/urfave/cli/v2 from 2.27.3 to 2.27.4 by @dependabot in https://github.com/coffeebeats/gdenv/pull/271
* chore(deps): bump golang.org/x/mod from 0.19.0 to 0.20.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/269
* chore(deps): bump golang.org/x/sync from 0.7.0 to 0.8.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/268
* chore(deps): bump github.com/go-resty/resty/v2 from 2.13.1 to 2.14.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/270
* chore(deps): bump github.com/go-resty/resty/v2 from 2.14.0 to 2.15.1 by @dependabot in https://github.com/coffeebeats/gdenv/pull/277
* chore(deps): bump tj-actions/changed-files from 44 to 45 by @dependabot in https://github.com/coffeebeats/gdenv/pull/274
* chore(deps): bump github.com/charmbracelet/lipgloss from 0.12.1 to 0.13.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/273
* chore(deps): bump github.com/go-resty/resty/v2 from 2.15.1 to 2.15.2 by @dependabot in https://github.com/coffeebeats/gdenv/pull/278
* chore(deps): bump github.com/go-resty/resty/v2 from 2.15.2 to 2.15.3 by @dependabot in https://github.com/coffeebeats/gdenv/pull/279
* chore(deps): bump github.com/urfave/cli/v2 from 2.27.4 to 2.27.5 by @dependabot in https://github.com/coffeebeats/gdenv/pull/280
* chore(deps): bump github.com/charmbracelet/lipgloss from 0.13.0 to 0.13.1 by @dependabot in https://github.com/coffeebeats/gdenv/pull/281
* chore(deps): bump github.com/charmbracelet/lipgloss from 0.13.1 to 1.0.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/282
* chore: bump minimum Go version to `1.22` by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/283
* chore: upgrade Go version to `1.23` by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/284


**Full Changelog**: https://github.com/coffeebeats/gdenv/compare/v0.6.25...v0.6.26

## 0.6.25 (2024-07-26)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion cmd/gdenv/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func main() { //nolint:funlen

app := &cli.App{
Name: "gdenv",
Version: "v0.6.25", // x-release-please-version
Version: "v0.6.26", // 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 'gdenv' binary for 64-bit Windows. If an alternative 'gdenv' binary is
# required, follow the documentation for an alternative means of installation:
# https://github.com/coffeebeats/gdenv/blob/v0.6.25/docs/installation.md # x-release-please-version
# https://github.com/coffeebeats/gdenv/blob/v0.6.26/docs/installation.md # x-release-please-version

<#
.SYNOPSIS
Expand All @@ -35,7 +35,7 @@
$env:GDENV_HOME\bin\godot.exe
.NOTES
Version: 0.6.25 # x-release-please-version
Version: 0.6.26 # x-release-please-version
Author: https://github.com/coffeebeats
.LINK
Expand All @@ -49,7 +49,7 @@ Param (
[Switch] $NoModifyPath = $False,

# Version - override the specific version of 'gdenv' to install
[String] $Version = "v0.6.25" # x-release-please-version
[String] $Version = "v0.6.26" # x-release-please-version
)

# -------------------------- Function: Get-GdEnvHome ------------------------- #
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 ----------------------------- #

GDENV_VERSION="${GDENV_VERSION:-0.6.25}" # x-release-please-version
GDENV_VERSION="${GDENV_VERSION:-0.6.26}" # x-release-please-version
GDENV_VERSION="v${GDENV_VERSION#v}"

# ----------------------------- Define: Platform ----------------------------- #
Expand Down

0 comments on commit 84ec513

Please sign in to comment.