Skip to content

Commit 3f52a6a

Browse files
committed
chore: Release hk version 0.8.2
1 parent 7a94c4a commit 3f52a6a

13 files changed

+23
-17
lines changed

CHANGELOG.md

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

3-
## [0.8.1](https://github.com/jdx/hk/compare/v0.8.0..0.8.1) - 2025-04-18
3+
## [0.8.2](https://github.com/jdx/hk/compare/v0.8.1..0.8.2) - 2025-04-18
4+
5+
### 🐛 Bug Fixes
6+
7+
- bug by [@jdx](https://github.com/jdx) in [7a94c4a](https://github.com/jdx/hk/commit/7a94c4ab456ec25a0916ad9217f41f0d7758c89f)
8+
9+
## [0.8.1](https://github.com/jdx/hk/compare/v0.8.0..v0.8.1) - 2025-04-18
410

511
### 🐛 Bug Fixes
612

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hk"
3-
version = "0.8.1"
3+
version = "0.8.2"
44
edition = "2024"
55
description = "A tool for managing git hooks"
66
license = "MIT"

docs/cli/commands.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,7 @@
15461546
"config": {
15471547
"props": {}
15481548
},
1549-
"version": "0.8.1",
1549+
"version": "0.8.2",
15501550
"usage": "Usage: hk [OPTIONS] <COMMAND>",
15511551
"complete": {},
15521552
"about": "A tool for managing git hooks"

docs/cli/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**Usage**: `hk [FLAGS] <SUBCOMMAND>`
44

5-
**Version**: 0.8.1
5+
**Version**: 0.8.2
66

77
- **Usage**: `hk [FLAGS] <SUBCOMMAND>`
88

docs/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ hk is configured via `hk.pkl` which is written in [pkl-lang](https://pkl-lang.or
1111
Here's a basic `hk.pkl` file:
1212

1313
```pkl
14-
amends "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Config.pkl"
15-
import "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Builtins.pkl"
14+
amends "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Config.pkl"
15+
import "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Builtins.pkl"
1616
1717
local linters {
1818
// linters can be manually defined

docs/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ hk generate
4545
This will generate a `hk.pkl` file in the root of the repository, here's an example `hk.pkl` with eslint and prettier linters:
4646

4747
```pkl
48-
amends "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Config.pkl"
49-
import "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Builtins.pkl"
48+
amends "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Config.pkl"
49+
import "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Builtins.pkl"
5050
5151
local linters {
5252
// linters can be manually defined

docs/mise_integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ parsing, parallel execution, and more.
3939
Just run mise in `hk.pkl` like any other command:
4040

4141
```pkl
42-
amends "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Config.pkl"
42+
amends "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Config.pkl"
4343
4444
`pre-commit` {
4545
["prelint"] {

docs/pkl_introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ This is a multi-line comment
174174
Every `hk.pkl` should start with this line which essentially schema validates the config and provides base classes:
175175

176176
```pkl
177-
amends "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Config.pkl"
177+
amends "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Config.pkl"
178178
```
179179

180180
### Imports

hk-example.pkl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
amends "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Config.pkl"
2-
import "package://github.com/jdx/hk/releases/download/v0.8.1/[email protected].1#/Builtins.pkl"
1+
amends "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Config.pkl"
2+
import "package://github.com/jdx/hk/releases/download/v0.8.2/[email protected].2#/Builtins.pkl"
33

44
local linters = new Mapping<String, Step> {
55
// some linters are built into hk

0 commit comments

Comments
 (0)