Skip to content

Commit b60f851

Browse files
chore: release main (#27)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 1895360 commit b60f851

5 files changed

Lines changed: 22 additions & 9 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.5.0"
2+
".": "1.5.1"
33
}

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.5.1](https://github.com/ChipWolf/dotfiles/compare/v1.5.0...v1.5.1) (2026-04-07)
4+
5+
6+
### Bug Fixes
7+
8+
* **ci:** login-shell PATH for brew tools; install Neovim in Codespaces ([cc74a8e](https://github.com/ChipWolf/dotfiles/commit/cc74a8e8c6b51069cd8efd8f2ca357cd35c28a13))
9+
10+
11+
### Miscellaneous
12+
13+
* **deps:** update dependency google/go-containerregistry to v0.21.4 ([#29](https://github.com/ChipWolf/dotfiles/issues/29)) ([1895360](https://github.com/ChipWolf/dotfiles/commit/189536018233e42426f5a1410ed27e093fe796d4))
14+
* **deps:** update docker/login-action digest to 4907a6d ([#28](https://github.com/ChipWolf/dotfiles/issues/28)) ([aef8da0](https://github.com/ChipWolf/dotfiles/commit/aef8da0a5591d32d2702af4c3c3cd84fd3c3b6ef))
15+
316
## [1.5.0](https://github.com/ChipWolf/dotfiles/compare/v1.4.0...v1.5.0) (2026-03-30)
417

518

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ Opinionated dotfiles managed with [chezmoi](https://chezmoi.io). One repo config
4040
> [!WARNING]
4141
> These scripts fetch and execute code from this repo in a single command. Review them first if that matters to you, or use the [inspect-first path](#inspect-first) below.
4242
>
43-
> The install scripts are published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.5.0) assets with [SLSA Build L3](https://slsa.dev/spec/v1.0/levels#build-l3) provenance, verified with: `gh attestation verify install.sh --repo chipwolf/dotfiles` <!-- x-release-please-version -->
43+
> The install scripts are published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.5.1) assets with [SLSA Build L3](https://slsa.dev/spec/v1.0/levels#build-l3) provenance, verified with: `gh attestation verify install.sh --repo chipwolf/dotfiles` <!-- x-release-please-version -->
4444
4545
**macOS / Linux**
4646

4747
<!-- x-release-please-start-version -->
4848

4949
```sh
50-
sh -c "$(curl -fsSL https://github.com/chipwolf/dotfiles/releases/download/v1.5.0/install.sh)"
50+
sh -c "$(curl -fsSL https://github.com/chipwolf/dotfiles/releases/download/v1.5.1/install.sh)"
5151
```
5252

5353
<!-- x-release-please-end -->
@@ -57,7 +57,7 @@ sh -c "$(curl -fsSL https://github.com/chipwolf/dotfiles/releases/download/v1.5.
5757
<!-- x-release-please-start-version -->
5858

5959
```powershell
60-
irm https://github.com/chipwolf/dotfiles/releases/download/v1.5.0/install.ps1 | iex
60+
irm https://github.com/chipwolf/dotfiles/releases/download/v1.5.1/install.ps1 | iex
6161
```
6262

6363
<!-- x-release-please-end -->
@@ -173,7 +173,7 @@ All release artifacts are built with [SLSA Build L3](https://slsa.dev/spec/v1.0/
173173

174174
This covers:
175175

176-
- **Install scripts** (`install.sh`, `install.ps1`): published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.5.0) assets. <!-- x-release-please-version -->
176+
- **Install scripts** (`install.sh`, `install.ps1`): published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.5.1) assets. <!-- x-release-please-version -->
177177
- **Codespaces overlay image** ([ghcr.io/chipwolf/dotfiles](https://ghcr.io/chipwolf/dotfiles)): published to GHCR.
178178

179179
> [!NOTE]
@@ -188,7 +188,7 @@ Verify:
188188
gh attestation verify install.sh --repo chipwolf/dotfiles
189189

190190
# Container image
191-
gh attestation verify oci://ghcr.io/chipwolf/dotfiles:v1.5.0 --repo chipwolf/dotfiles
191+
gh attestation verify oci://ghcr.io/chipwolf/dotfiles:v1.5.1 --repo chipwolf/dotfiles
192192
```
193193

194194
<!-- x-release-please-end -->

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# install.ps1 — Bootstrap chezmoi dotfiles on Windows.
22
# Forks: update $repoUrl below to point at your fork.
33
# Usage (elevated PowerShell not required — script self-elevates):
4-
# irm https://github.com/chipwolf/dotfiles/releases/download/v1.5.0/install.ps1 | iex # x-release-please-version
4+
# irm https://github.com/chipwolf/dotfiles/releases/download/v1.5.1/install.ps1 | iex # x-release-please-version
55
# Or clone the repo and run:
66
# .\install.ps1
77

88
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute('PSAvoidUsingWriteHost', '', Justification = 'Install script uses Write-Host for coloured terminal output')]
99
param()
1010

1111
$repoUrl = "https://github.com/chipwolf/dotfiles"
12-
$rawBase = "https://github.com/chipwolf/dotfiles/releases/download/v1.5.0" # x-release-please-version
12+
$rawBase = "https://github.com/chipwolf/dotfiles/releases/download/v1.5.1" # x-release-please-version
1313

1414
$ErrorActionPreference = "Stop"
1515

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if [ -n "${CODESPACES:-}" ] && [ -z "${DOTFILES_NO_OVERLAY:-}" ]; then
2323
tar -xzf "/tmp/_crane/${CRANE_TAR}" -C /tmp/_crane crane
2424
CRANE=/tmp/_crane/crane
2525

26-
OUR_IMAGE="ghcr.io/chipwolf/dotfiles:v1.5.0" # x-release-please-version
26+
OUR_IMAGE="ghcr.io/chipwolf/dotfiles:v1.5.1" # x-release-please-version
2727

2828
OUR_MANIFEST=$("$CRANE" manifest "$OUR_IMAGE")
2929
OUR_DIGEST=$("$CRANE" digest "$OUR_IMAGE")

0 commit comments

Comments
 (0)