Skip to content

Commit d0d6b82

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

5 files changed

Lines changed: 16 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.1.0"
2+
".": "1.1.1"
33
}

CHANGELOG.md

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

3+
## [1.1.1](https://github.com/ChipWolf/dotfiles/compare/v1.1.0...v1.1.1) (2026-03-23)
4+
5+
6+
### Bug Fixes
7+
8+
* **install:** use sudo for overlay tar extraction in Codespaces ([c032841](https://github.com/ChipWolf/dotfiles/commit/c0328412b2d16a050791517d4f7683dfb9a691a2))
9+
310
## [1.1.0](https://github.com/ChipWolf/dotfiles/compare/v1.0.0...v1.1.0) (2026-03-23)
411

512

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,21 +42,21 @@ Opinionated dotfiles managed with [chezmoi](https://chezmoi.io). One repo config
4242
> [!WARNING]
4343
> 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.
4444
>
45-
> The install scripts are published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.1.0) assets with [SLSA Build L3](https://slsa.dev/spec/v1.0/levels#build-l3) provenance, verified with: `gh attestation verify install.sh --owner chipwolf` <!-- x-release-please-version -->
45+
> The install scripts are published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.1.1) assets with [SLSA Build L3](https://slsa.dev/spec/v1.0/levels#build-l3) provenance, verified with: `gh attestation verify install.sh --owner chipwolf` <!-- x-release-please-version -->
4646
4747
**macOS / Linux**
4848

4949
<!-- x-release-please-start-version -->
5050
```sh
51-
sh -c "$(curl -fsSL https://github.com/chipwolf/dotfiles/releases/download/v1.1.0/install.sh)"
51+
sh -c "$(curl -fsSL https://github.com/chipwolf/dotfiles/releases/download/v1.1.1/install.sh)"
5252
```
5353
<!-- x-release-please-end -->
5454

5555
**Windows** (PowerShell, the script self-elevates)
5656

5757
<!-- x-release-please-start-version -->
5858
```powershell
59-
irm https://github.com/chipwolf/dotfiles/releases/download/v1.1.0/install.ps1 | iex
59+
irm https://github.com/chipwolf/dotfiles/releases/download/v1.1.1/install.ps1 | iex
6060
```
6161
<!-- x-release-please-end -->
6262

@@ -171,7 +171,7 @@ All release artifacts are built with [SLSA Build L3](https://slsa.dev/spec/v1.0/
171171

172172
This covers:
173173

174-
- **Install scripts** (`install.sh`, `install.ps1`): published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.1.0) assets with generic SLSA provenance. <!-- x-release-please-version -->
174+
- **Install scripts** (`install.sh`, `install.ps1`): published as [GitHub Release](https://github.com/chipwolf/dotfiles/releases/tag/v1.1.1) assets with generic SLSA provenance. <!-- x-release-please-version -->
175175
- **Codespaces overlay image** ([ghcr.io/chipwolf/dotfiles](https://ghcr.io/chipwolf/dotfiles)): published to GHCR with container SLSA provenance.
176176

177177
> [!NOTE]
@@ -185,7 +185,7 @@ Verify:
185185
gh attestation verify install.sh --owner chipwolf
186186

187187
# Container image
188-
gh attestation verify oci://ghcr.io/chipwolf/dotfiles:v1.1.0 --owner chipwolf
188+
gh attestation verify oci://ghcr.io/chipwolf/dotfiles:v1.1.1 --owner chipwolf
189189
```
190190
<!-- x-release-please-end -->
191191

install.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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.1.0/install.ps1 | iex # x-release-please-version
4+
# irm https://github.com/chipwolf/dotfiles/releases/download/v1.1.1/install.ps1 | iex # x-release-please-version
55
# Or clone the repo and run:
66
# .\install.ps1
77

88
$repoUrl = "https://github.com/chipwolf/dotfiles"
9-
$rawBase = "https://github.com/chipwolf/dotfiles/releases/download/v1.1.0" # x-release-please-version
9+
$rawBase = "https://github.com/chipwolf/dotfiles/releases/download/v1.1.1" # x-release-please-version
1010

1111
$ErrorActionPreference = "Stop"
1212

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [ -n "${CODESPACES:-}" ] && [ -z "${DOTFILES_NO_OVERLAY:-}" ]; then
1818
| tar -xz -C /tmp/_crane crane
1919
CRANE=/tmp/_crane/crane
2020

21-
OUR_IMAGE="ghcr.io/chipwolf/dotfiles:v1.1.0" # x-release-please-version
21+
OUR_IMAGE="ghcr.io/chipwolf/dotfiles:v1.1.1" # x-release-please-version
2222
BASE_IMAGE="mcr.microsoft.com/devcontainers/universal:latest"
2323

2424
OUR_MANIFEST=$("$CRANE" manifest "$OUR_IMAGE")

0 commit comments

Comments
 (0)