Skip to content

Commit

Permalink
chore: release v0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Nov 7, 2023
1 parent a763756 commit f4c81a5
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## 0.6.2 (2023-11-07)

## What's Changed
* chore(CI): use repository Go version during CodeQL scans by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/137
* chore(deps): bump actions/checkout from 3 to 4 by @dependabot in https://github.com/coffeebeats/gdenv/pull/132
* chore(deps): bump github.com/golangci/golangci-lint from 1.55.1 to 1.55.2 by @dependabot in https://github.com/coffeebeats/gdenv/pull/133
* chore(deps): bump github.com/goreleaser/goreleaser from 1.21.2 to 1.22.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/136
* chore(deps): bump golang.org/x/mod from 0.13.0 to 0.14.0 by @dependabot in https://github.com/coffeebeats/gdenv/pull/134
* fix(CI): run linting in separate job by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/139
* fix(CI): migrate to new `--skip` flag by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/140
* fix(CI): carry forward CodeCov coverage for entire project by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/141
* feat(CI): run tests with the race detector enabled by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/142
* feat(internal/fstest): create `Filepath` interface for creating different filepath types in tests by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/143
* fix(CI): ensure `go test` command has sufficient timeout by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/144
* fix(pkg/progress): eliminate deadlock in `TestWriter` test by @coffeebeats in https://github.com/coffeebeats/gdenv/pull/145


**Full Changelog**: https://github.com/coffeebeats/gdenv/compare/v0.6.1...v0.6.2

## 0.6.1 (2023-11-05)

## 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.1", // x-release-please-version
Version: "v0.6.2", // 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.1/docs/installation.md # x-release-please-version
# https://github.com/coffeebeats/gdenv/blob/v0.6.2/docs/installation.md # x-release-please-version

<#
.SYNOPSIS
Expand All @@ -35,7 +35,7 @@
$env:GDENV_HOME\bin\godot.exe
.NOTES
Version: 0.6.1 # x-release-please-version
Version: 0.6.2 # 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.1" # x-release-please-version
[String] $Version = "v0.6.2" # 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.1}" # x-release-please-version
GDENV_VERSION="${GDENV_VERSION=0.6.2}" # x-release-please-version
GDENV_VERSION="v${GDENV_VERSION#v}"

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

0 comments on commit f4c81a5

Please sign in to comment.