linear-cli 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bc273e12a3dd9e864894c2484bd08a203531da62873505b33d5706f13349e2c6
4
- data.tar.gz: ffb38d1c66023c229bc98812fa55e4a58e29342adb46e96f63cf0054560a3964
3
+ metadata.gz: 4026e9cf06b89bfcb574999671055fe7c07cb81b3b00c373834c73a5b6804388
4
+ data.tar.gz: e476a919a256f0689f77e286e0681c9f53b31616fd87ed3851010b8b12fdc835
5
5
  SHA512:
6
- metadata.gz: 2323c788c7095f385320006a7be3b167b7dc9fc731c96a13ea5af48dcdec0dc013f8e6f55c71e9631022ae744a5faecbc34c8bda668c172cfb98d935c1af40a0
7
- data.tar.gz: c8422224df18d500f92d1d8e0d90cd27f41cc8d0c148943b6f53f6e6269d67aae676f2fd006e9a4210199e5aae572e39e9b3bf46ddce2206f2880d88c3a78fac
6
+ metadata.gz: 63516aa3096f09fba035ec976fecb068fa0e716490813d450cd5f1389e7dd96bc115cbe799581142a175b81520ba215d0b3653a93dca1c0a5c30e6110e9f65fa
7
+ data.tar.gz: 01c3f94c3a364d49b2f78512285d144dffb40cbefaa4e4db36c2827ba62bbcc0e8cf6b6f885d611a2689abb5b04d5170d2b44246c3a4f77a3757df038a38fc95
data/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.6.1] - 2024-02-04
6
+ ### Added
7
+ - Added lcreate alias (@bougyman)
8
+
5
9
  ## [0.6.0] - 2024-02-04
6
10
 
7
11
  ## [0.5.5] - 2024-02-04
@@ -21,8 +25,9 @@
21
25
  ### Added
22
26
  - Added new changelog management system (changelog-rb) (@bougyman)
23
27
 
24
- [Unreleased]: https://github.com/rubyists/linear-cli/compare/0.6.0...HEAD
25
- [0.6.0]: https://github.com/rubyists/linear-cli/compare/v0.5.5...0.6.0
28
+ [Unreleased]: https://github.com/rubyists/linear-cli/compare/0.6.1...HEAD
29
+ [0.6.1]: https://github.com/rubyists/linear-cli/compare/v0.6.0...0.6.1
30
+ [0.6.0]: https://github.com/rubyists/linear-cli/compare/v0.5.5...v0.6.0
26
31
  [0.5.5]: https://github.com/rubyists/linear-cli/compare/v0.5.4...v0.5.5
27
32
  [0.5.4]: https://github.com/rubyists/linear-cli/compare/v0.5.3...v0.5.4
28
33
  [0.5.3]: https://github.com/rubyists/linear-cli/compare/v0.5.2...v0.5.3
data/Readme.adoc CHANGED
@@ -139,3 +139,13 @@ $ lc issue update --comment "Here is a comment" CRY-1234
139
139
  $ lc i u --close --reason "These were closable" CRY-1234 CRY-2
140
140
  ----
141
141
 
142
+ === Aliases
143
+
144
+ Some command aliases are available to make things easier to type.
145
+
146
+ [source,sh]
147
+ ----
148
+ $ lcls
149
+ $ lcreate --description "This is a new issue" --labels Bug,Feature --team CRY
150
+ $ lclose --reason "This issues suck" CRY-1234 CRY-456
151
+ ----
@@ -0,0 +1,4 @@
1
+ type: Added
2
+ title: >
3
+ Added lcreate alias
4
+ author: bougyman
@@ -0,0 +1 @@
1
+ date: 2024-02-04
data/exe/lcreate ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
3
+
4
+ exec File.join(__dir__, 'lcreate.sh'), *ARGV
data/exe/lcreate.sh ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env bash
2
+ exec lc issue create "$@"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Rubyists
4
4
  module Linear
5
- VERSION = '0.6.0'
5
+ VERSION = '0.6.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: linear-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tj (bougyman) Vanderpoel
@@ -187,6 +187,8 @@ executables:
187
187
  - lclose.sh
188
188
  - lcls
189
189
  - lcls.sh
190
+ - lcreate
191
+ - lcreate.sh
190
192
  extensions: []
191
193
  extra_rdoc_files: []
192
194
  files:
@@ -203,12 +205,16 @@ files:
203
205
  - changelog/0.5.5/added_lclose_alias_and_issue_update_subcommand.yml
204
206
  - changelog/0.5.5/tag.yml
205
207
  - changelog/0.6.0/tag.yml
208
+ - changelog/0.6.1/added_lcreate_alias.yml
209
+ - changelog/0.6.1/tag.yml
206
210
  - changelog/unreleased/.gitkeep
207
211
  - exe/lc
208
212
  - exe/lclose
209
213
  - exe/lclose.sh
210
214
  - exe/lcls
211
215
  - exe/lcls.sh
216
+ - exe/lcreate
217
+ - exe/lcreate.sh
212
218
  - lib/linear.rb
213
219
  - lib/linear/api.rb
214
220
  - lib/linear/cli.rb
@@ -236,7 +242,6 @@ files:
236
242
  - lib/linear/models/workflow_state.rb
237
243
  - lib/linear/version.rb
238
244
  - linear-cli.gemspec
239
- - sig/linear/cli.rbs
240
245
  homepage: https://github.com/rubyists/linear-cli
241
246
  licenses:
242
247
  - MIT
data/sig/linear/cli.rbs DELETED
@@ -1,6 +0,0 @@
1
- module Linear
2
- module Cli
3
- VERSION: String
4
- # See the writing guide of rbs: https://github.com/ruby/rbs#guides
5
- end
6
- end