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.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Mar 22, 2024
1 parent e4aea89 commit 5ed8681
Show file tree
Hide file tree
Showing 7 changed files with 23 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.2.2"
".": "0.2.3"
}
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 0.2.3 (2024-03-22)

## What's Changed
* chore(deps): bump clap from 4.5.2 to 4.5.3 by @dependabot in https://github.com/coffeebeats/gdpack/pull/176
* chore(deps): bump toml from 0.8.11 to 0.8.12 by @dependabot in https://github.com/coffeebeats/gdpack/pull/177
* chore(deps): bump git2 from 0.18.2 to 0.18.3 by @dependabot in https://github.com/coffeebeats/gdpack/pull/180
* chore(deps): bump reqwest from 0.11.26 to 0.11.27 by @dependabot in https://github.com/coffeebeats/gdpack/pull/181
* chore(deps): bump toml_edit from 0.22.8 to 0.22.9 by @dependabot in https://github.com/coffeebeats/gdpack/pull/182
* chore(deps): bump tj-actions/changed-files from 42 to 43 by @dependabot in https://github.com/coffeebeats/gdpack/pull/179
* chore(deps): bump reqwest from 0.11.27 to 0.12.0 by @dependabot in https://github.com/coffeebeats/gdpack/pull/183
* fix(ci): ensure last remote ref is always used when detecting changes by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/185


**Full Changelog**: https://github.com/coffeebeats/gdpack/compare/v0.2.2...v0.2.3

## 0.2.2 (2024-03-14)

## 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.2.2"
version = "0.2.3"
description = "A small, single-purpose CLI application for managing Godot addons."
edition = "2021"
rust-version = "1.75.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.2.2 # x-release-please-version
cargo install --git github.com/coffeebeats/gdpack/cmd/gdpack --tag v0.2.3 # 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.2.2/docs/installation.md # x-release-please-version
# https://github.com/coffeebeats/gdpack/blob/v0.2.3/docs/installation.md # x-release-please-version

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

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

0 comments on commit 5ed8681

Please sign in to comment.