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.10 (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
coffeebeats committed Apr 8, 2024
1 parent 9fb949f commit f001f37
Show file tree
Hide file tree
Showing 7 changed files with 21 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.9"
".": "0.2.10"
}
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.2.10 (2024-04-06)

## What's Changed
* fix(scripts): unblock downloads of new `arm64` on `linux` target by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/210
* fix(scripts): use correct compound condition syntax by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/212
* fix(scripts): use correct variable name by @coffeebeats in https://github.com/coffeebeats/gdpack/pull/213
* chore(deps): bump h2 from 0.4.3 to 0.4.4 by @dependabot in https://github.com/coffeebeats/gdpack/pull/215
* chore(deps): bump reqwest from 0.12.2 to 0.12.3 by @dependabot in https://github.com/coffeebeats/gdpack/pull/216
* chore(deps): bump tj-actions/changed-files from 43 to 44 by @dependabot in https://github.com/coffeebeats/gdpack/pull/214


**Full Changelog**: https://github.com/coffeebeats/gdpack/compare/v0.2.9...v0.2.10

## 0.2.9 (2024-03-31)

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

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

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

0 comments on commit f001f37

Please sign in to comment.