Skip to content

Commit 27c083b

Browse files
committed
chore: Release linear-cli version 1.11.0
1 parent ce8585c commit 27c083b

File tree

20 files changed

+108
-89
lines changed

20 files changed

+108
-89
lines changed

.claude/skills/release/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ For each commit identified above, evaluate whether it warrants a changelog entry
5252
- Build/CI configuration changes
5353
- Chore commits (unless significant)
5454

55-
Use the changelog CLI to add entries. For PR attribution, manually add PR links and author credits, but exclude users 'schpet' and 'schpetbot' from attribution:
55+
Use the changelog CLI to add entries. Use `--attribute-pr` with the commit SHA to automatically look up the associated PR and add attribution, excluding `schpet` and `schpetbot`:
5656

5757
```bash
58-
changelog add --type <type> "<description>"
58+
changelog add --type <type> "<description>" --attribute-pr <commit-sha> --exclude-users schpet,schpetbot
5959
```
6060

61-
When a PR should be attributed (i.e., the author is not schpet or schpetbot), manually add the PR number and author to the changelog entry after adding it.
61+
Omit `--attribute-pr` for commits without an associated PR or when attribution isn't relevant.
6262

6363
Types match Keep a Changelog categories:
6464

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## [Unreleased]
44

5+
## [1.11.0] - 2026-03-05
6+
7+
### Added
8+
9+
- project update and delete commands, plus --json flag for project commands ([#148](https://github.com/schpet/linear-cli/pull/148); thanks @chronosis)
10+
- cycle list and view commands, plus --cycle filter for issue list ([#162](https://github.com/schpet/linear-cli/pull/162); thanks @regaw-leinad)
11+
- issue comment delete command
12+
- cycle support for issue create and update commands ([#150](https://github.com/schpet/linear-cli/pull/150); thanks @jholm117)
13+
- milestone support for issue create and update commands ([#149](https://github.com/schpet/linear-cli/pull/149); thanks @jholm117)
14+
15+
### Fixed
16+
17+
- project update date validation now works correctly when combined with other flags
18+
- issue view no longer sends auth headers to non-Linear image domains ([#154](https://github.com/schpet/linear-cli/pull/154); thanks @hmnd)
19+
- project lookup now falls back to slug ID when name match fails
20+
- success message order corrected for 'blocked-by' issue relations
21+
- git command errors now report more helpful messages
22+
523
## [1.10.0] - 2026-02-17
624

725
### Fixed
@@ -386,7 +404,8 @@
386404
- adds a -t, --title flag to the `issue pr` command, allowing you to provide a PR title that is different than linear's issue title
387405
- allows linear issue identifiers to be passed in as arguments to the issue commands as an alternative to parsing the branch name, e.g. `linear issue show ABC-123`
388406

389-
[Unreleased]: https://github.com/schpet/linear-cli/compare/v1.10.0...HEAD
407+
[Unreleased]: https://github.com/schpet/linear-cli/compare/v1.11.0...HEAD
408+
[1.11.0]: https://github.com/schpet/linear-cli/compare/v1.10.0...v1.11.0
390409
[1.10.0]: https://github.com/schpet/linear-cli/compare/v1.9.1...v1.10.0
391410
[1.9.1]: https://github.com/schpet/linear-cli/compare/v1.9.0...v1.9.1
392411
[1.9.0]: https://github.com/schpet/linear-cli/compare/v1.8.1...v1.9.0

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
33
"name": "@schpet/linear-cli",
4-
"version": "1.10.0",
4+
"version": "1.11.0",
55
"exports": "./src/main.ts",
66
"license": "MIT",
77
"tasks": {

dist-workspace.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ members = ["dist:."]
55
[package]
66
name = "linear"
77
description = "CLI tool for linear.app that uses git branch names and directory names to open issues and team pages"
8-
version = "1.10.0"
8+
version = "1.11.0"
99
license = "MIT"
1010
repository = "https://github.com/schpet/linear-cli"
1111
homepage = "https://github.com/schpet/linear-cli"

skills/linear-cli/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ allowed-tools: Bash(linear:*), Bash(curl:*)
88

99
A CLI to manage Linear issues from the command line, with git and jj integration.
1010

11-
Generated from linear CLI v1.10.0
11+
Generated from linear CLI v1.11.0
1212

1313
## Prerequisites
1414

skills/linear-cli/references/api.md

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

77
```
88
Usage: linear api [query]
9-
Version: 1.10.0
9+
Version: 1.11.0
1010
1111
Description:
1212

skills/linear-cli/references/auth.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```
88
Usage: linear auth
9-
Version: 1.10.0
9+
Version: 1.11.0
1010
1111
Description:
1212
@@ -35,7 +35,7 @@ Commands:
3535
3636
```
3737
Usage: linear auth login
38-
Version: 1.10.0
38+
Version: 1.11.0
3939
4040
Description:
4141
@@ -54,7 +54,7 @@ Options:
5454
5555
```
5656
Usage: linear auth logout [workspace]
57-
Version: 1.10.0
57+
Version: 1.11.0
5858
5959
Description:
6060
@@ -73,7 +73,7 @@ Options:
7373
7474
```
7575
Usage: linear auth list
76-
Version: 1.10.0
76+
Version: 1.11.0
7777
7878
Description:
7979
@@ -91,7 +91,7 @@ Options:
9191
9292
```
9393
Usage: linear auth default [workspace]
94-
Version: 1.10.0
94+
Version: 1.11.0
9595
9696
Description:
9797
@@ -109,7 +109,7 @@ Options:
109109
110110
```
111111
Usage: linear auth token
112-
Version: 1.10.0
112+
Version: 1.11.0
113113
114114
Description:
115115
@@ -127,7 +127,7 @@ Options:
127127
128128
```
129129
Usage: linear auth whoami
130-
Version: 1.10.0
130+
Version: 1.11.0
131131
132132
Description:
133133

skills/linear-cli/references/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Linear CLI Command Reference
22

3-
Generated from linear CLI v1.10.0
3+
Generated from linear CLI v1.11.0
44

55
## Commands
66

skills/linear-cli/references/config.md

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

77
```
88
Usage: linear config
9-
Version: 1.10.0
9+
Version: 1.11.0
1010
1111
Description:
1212

skills/linear-cli/references/cycle.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
```
88
Usage: linear cycle
9-
Version: 1.10.0
9+
Version: 1.11.0
1010
1111
Description:
1212
@@ -31,7 +31,7 @@ Commands:
3131
3232
```
3333
Usage: linear cycle list
34-
Version: 1.10.0
34+
Version: 1.11.0
3535
3636
Description:
3737
@@ -50,7 +50,7 @@ Options:
5050
5151
```
5252
Usage: linear cycle view <cycleRef>
53-
Version: 1.10.0
53+
Version: 1.11.0
5454
5555
Description:
5656

0 commit comments

Comments
 (0)