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.4 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats authored Dec 4, 2023
1 parent fc9dd8f commit 3fa8e8e
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 8 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.0.3"
".": "0.0.4"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.0.4 (2023-12-04)

## What's Changed
* fix(ci): correct syntax error when archiving gdpack.exe by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/31


**Full Changelog**: https://github.com/coffeebeats/gdpack/compare/v0.0.3...v0.0.4

## 0.0.3 (2023-12-04)

## What's Changed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gdpack"
version = "0.0.3"
version = "0.0.4"
description = "A small, single-purpose CLI application for managing Godot addons."
edition = "2021"
rust-version = "1.74.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Invoke-WebRequest `
`gdpack` is a Rust project and can be installed using `cargo build`. This option is not recommended as it requires having the Rust toolchain installed, it's slower than downloading a prebuilt binary, and there may be instability due to using a different version of Rust than it was developed with.
```sh
cargo install --git github.com/coffeebeats/gdpack/cmd/gdpack --tag v0.0.3 # x-release-please-version
cargo install --git github.com/coffeebeats/gdpack/cmd/gdpack --tag v0.0.4 # x-release-please-version
```
Once `gdpack` is installed a few things need to be configured. Follow the instructions below based on your operating system.
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.3/docs/installation.md # x-release-please-version
# https://github.com/coffeebeats/gdpack/blob/v0.0.4/docs/installation.md # x-release-please-version

<#
.SYNOPSIS
Expand All @@ -34,7 +34,7 @@
$env:GDPACK_HOME\bin\gdpack.exe
.NOTES
Version: 0.0.3 # x-release-please-version
Version: 0.0.4 # 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.3" # x-release-please-version
[String] $Version = "v0.0.4" # 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.3}" # x-release-please-version
GDPACK_VERSION="${GDPACK_VERSION=0.0.4}" # x-release-please-version
GDPACK_VERSION="v${GDPACK_VERSION#v}"

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

0 comments on commit 3fa8e8e

Please sign in to comment.