Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release v0.6.10 #187

Merged
merged 1 commit into from
Jan 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9"
".": "0.6.10"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.6.10 (2024-01-22)

## What's Changed
* feat(ci): add a workflow to auto-merge a Dependabot PR by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/183
* chore(deps): bump github.com/urfave/cli/v2 from 2.27.0 to 2.27.1 by @dependabot in https://github.com/coffeebeats/gdenv/pull/182
* fix(ci): remove example condition from workflow step by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/185
* feat(ci): run on changes to actions or workflows by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/186
* fix(ci): enable auto-merge of Dependabot PRs for patch-level changes by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/189
* chore(ci): ensure auto-merged Dependabot PRs are squashed by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/190
* chore(deps): bump golang.org/x/sync from 0.5.0 to 0.6.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/188
* chore(deps): bump tj-actions/changed-files from 41 to 42 by @dependabot in https://github.com/coffeebeats/gdenv/pull/191


**Full Changelog**: https://github.com/coffeebeats/gdenv/compare/v0.6.9...v0.6.10

## 0.6.9 (2023-12-31)

## 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 @@ -32,7 +32,7 @@ func main() { //nolint:funlen

app := &cli.App{
Name: "gdenv",
Version: "v0.6.9", // x-release-please-version
Version: "v0.6.10", // 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.9/docs/installation.md # x-release-please-version
# https://github.com/coffeebeats/gdenv/blob/v0.6.10/docs/installation.md # x-release-please-version

<#
.SYNOPSIS
Expand All @@ -35,7 +35,7 @@
$env:GDENV_HOME\bin\godot.exe

.NOTES
Version: 0.6.9 # x-release-please-version
Version: 0.6.10 # 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.9" # x-release-please-version
[String] $Version = "v0.6.10" # 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.9}" # x-release-please-version
GDENV_VERSION="${GDENV_VERSION=0.6.10}" # x-release-please-version
GDENV_VERSION="v${GDENV_VERSION#v}"

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