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.0.2 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats authored Nov 10, 2023
1 parent ca9940f commit 2d7a594
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.0.2 (2023-11-10)

## What's Changed
* chore(ci): remove version pin from release action by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/4
* fix(docs,tools): correct Windows installation command; remove `tools.go` by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/9


**Full Changelog**: https://github.com/coffeebeats/gdpack/compare/v0.0.1...v0.0.2

## 0.0.1 (2023-11-08)

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

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

<#
.SYNOPSIS
Expand All @@ -34,7 +34,7 @@
$env:GDPACK_HOME\bin\gdpack.exe
.NOTES
Version: 0.0.1 # x-release-please-version
Version: 0.0.2 # 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 'gdpack' to install
[String] $Version = "v0.0.1" # x-release-please-version
[String] $Version = "v0.0.2" # x-release-please-version
)

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

GDPACK_VERSION="${GDPACK_VERSION=0.0.1}" # x-release-please-version
GDPACK_VERSION="${GDPACK_VERSION=0.0.2}" # x-release-please-version
GDPACK_VERSION="v${GDPACK_VERSION#v}"

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

0 comments on commit 2d7a594

Please sign in to comment.