Skip to content

Commit 75a34ad

Browse files
committed
Adds develop command documentation to Readme
1 parent 1c1e6aa commit 75a34ad

File tree

5 files changed

+30
-4
lines changed

5 files changed

+30
-4
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [0.5.4] - 2024-02-04
6+
57
## [0.5.3] - 2024-02-03
8+
### Added
9+
- Added support for multiline descriptions without failing (@bougyman)
10+
611
### Changed
712
- Changed default branch to use upstream default branch name (@bougyman)
813

914
## [0.5.2] - 2024-02-03
1015
### Added
1116
- Added new changelog management system (changelog-rb) (@bougyman)
1217

13-
[Unreleased]: https://github.com/rubyists/linear-cli/compare/v0.5.3...HEAD
18+
[Unreleased]: https://github.com/rubyists/linear-cli/compare/0.5.4...HEAD
19+
[0.5.4]: https://github.com/rubyists/linear-cli/compare/v0.5.3...0.5.4
1420
[0.5.3]: https://github.com/rubyists/linear-cli/compare/v0.5.2...v0.5.3

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
linear-cli (0.5.3)
4+
linear-cli (0.5.4)
55
base64 (~> 0.2)
66
dry-cli (~> 1.0)
77
dry-cli-completion (~> 1.0)

Readme.adoc

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ $ lc w --teams
8282
----
8383
$ lcls
8484
$ lcls --full
85+
$ lcls -f CRY-1
8586
----
8687

8788
==== Assign one or more issues to yourself (take em!)
@@ -100,7 +101,21 @@ $ lc issue take CRY-456 CRY-789
100101

101102
[source,sh]
102103
----
103-
$ lc i c --title "My new issue" --description "This is a new issue"
104+
$ lc i c --title "My new issue" --description "This is a new issue" --labels Bug,Feature --team CRY
105+
$ lc i c -t "My new issue" -T CRY -l Improvment,Feature
104106
----
105107

106-
NOTE: If you don't provide a title or description, you will be prompted to enter them.
108+
NOTE: If you don't provide a title, team, labels or description, you will be prompted to enter them.
109+
110+
==== Develop an issue
111+
112+
This will switch to the branch for the issue, creating the branch if it doesn't exist.
113+
114+
'dev' is a shortcut for the 'develop' subcommand of the issue command
115+
116+
[source,sh]
117+
----
118+
$ lc i dev CRY-1234
119+
----
120+
121+
TIP: You may pass the --dev option to the create subcommand to immediately develop the creted issue.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
type: Added
2+
title: >
3+
Added support for multiline descriptions without failing
4+
author: bougyman

changelog/0.5.4/tag.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
date: 2024-02-04

0 commit comments

Comments
 (0)