circleci-cli 3.0.0 → 4.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +38 -0
- data/.github/workflows/release.yaml +41 -0
- data/.github/workflows/test.yml +20 -3
- data/.gitignore +57 -0
- data/.rubocop.yml +4 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +182 -7
- data/Gemfile.lock +154 -92
- data/Guardfile +1 -1
- data/README.md +6 -7
- data/circleci-cli.gemspec +25 -20
- data/lib/circleci/cli/command/base_command.rb +1 -1
- data/lib/circleci/cli/networking/pusher_client.rb +6 -6
- data/lib/circleci/cli/printer/build_printer.rb +2 -2
- data/lib/circleci/cli/printer/step_printer.rb +1 -1
- data/lib/circleci/cli/version.rb +1 -1
- data/lib/circleci/cli.rb +5 -4
- metadata +62 -28
- data/.circleci/config.yml +0 -68
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 731ca5b1c5a4ea5b73bf0757c37fc83fe13f197069c22c965de5bbe055357dd9
|
4
|
+
data.tar.gz: 58b7984a871d7d2aac0bfed50c8b0f1e2b30b70d533485e386ae8c7cfdb8b432
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eaa50c9c638f86a0e3870f252276f1dad8507955dd1220fd4caf0d4e64e53157b74b1981deefef1719bfdc63e1d9fce7c9b0565f52d01e032eb8f6866a38dc31
|
7
|
+
data.tar.gz: 9d3e1a28d7c4b63fec6577d33a3edb9ff001c19f3386c2dc8efd2da4c7dad3f5f8e8a6686b99483ee7de7633737e8327d647dc9da351fc3f45b560efd9900960
|
@@ -0,0 +1,38 @@
|
|
1
|
+
version: 2
|
2
|
+
updates:
|
3
|
+
- package-ecosystem: bundler
|
4
|
+
directory: "/"
|
5
|
+
schedule:
|
6
|
+
interval: daily
|
7
|
+
time: "12:00"
|
8
|
+
timezone: Asia/Tokyo
|
9
|
+
open-pull-requests-limit: 20
|
10
|
+
reviewers:
|
11
|
+
- unhappychoice
|
12
|
+
allow:
|
13
|
+
- dependency-type: direct
|
14
|
+
- dependency-type: indirect
|
15
|
+
ignore:
|
16
|
+
- dependency-name: codecov
|
17
|
+
versions:
|
18
|
+
- ">= 0.2.14.a, < 0.2.15"
|
19
|
+
- dependency-name: rubocop
|
20
|
+
versions:
|
21
|
+
- 1.12.1
|
22
|
+
- dependency-name: listen
|
23
|
+
versions:
|
24
|
+
- 3.5.0
|
25
|
+
- dependency-name: github_changelog_generator
|
26
|
+
versions:
|
27
|
+
- 1.16.0
|
28
|
+
- 1.16.1
|
29
|
+
- dependency-name: codecov
|
30
|
+
versions:
|
31
|
+
- 0.5.0
|
32
|
+
- dependency-name: regexp_parser
|
33
|
+
versions:
|
34
|
+
- 2.1.0
|
35
|
+
- 2.1.1
|
36
|
+
- dependency-name: activesupport
|
37
|
+
versions:
|
38
|
+
- 6.1.2
|
@@ -0,0 +1,41 @@
|
|
1
|
+
name: release
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
inputs:
|
6
|
+
version:
|
7
|
+
description: Release version
|
8
|
+
required: true
|
9
|
+
type: choice
|
10
|
+
options:
|
11
|
+
- major
|
12
|
+
- minor
|
13
|
+
- patch
|
14
|
+
jobs:
|
15
|
+
push:
|
16
|
+
name: Push gem to RubyGems.org
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
environment:
|
19
|
+
name: release
|
20
|
+
permissions:
|
21
|
+
id-token: write
|
22
|
+
contents: write
|
23
|
+
steps:
|
24
|
+
- uses: actions/checkout@v4
|
25
|
+
- name: Set up Ruby
|
26
|
+
uses: ruby/setup-ruby@v1
|
27
|
+
with:
|
28
|
+
bundler-cache: true
|
29
|
+
ruby-version: .ruby-version
|
30
|
+
- name: Setup Git
|
31
|
+
run: |
|
32
|
+
git config --global user.email "unhappychoice@gmail.com"
|
33
|
+
git config --global user.name "unhappychoice"
|
34
|
+
- name: Install gem-release
|
35
|
+
run: gem install gem-release
|
36
|
+
- name: Bump version
|
37
|
+
run: |
|
38
|
+
gem bump --version ${{inputs.version}} --message ':tada: Bump %{name} to %{version}'
|
39
|
+
bundle config set frozen false && bundle install
|
40
|
+
git add . && git commit --amend --no-edit
|
41
|
+
- uses: rubygems/release-gem@v1
|
data/.github/workflows/test.yml
CHANGED
@@ -3,15 +3,29 @@ name: test
|
|
3
3
|
on: [push]
|
4
4
|
|
5
5
|
jobs:
|
6
|
-
|
6
|
+
lint:
|
7
|
+
runs-on: ubuntu-latest
|
8
|
+
steps:
|
9
|
+
- uses: actions/checkout@master
|
10
|
+
- name: Set up Ruby
|
11
|
+
uses: ruby/setup-ruby@v1
|
12
|
+
with:
|
13
|
+
ruby-version: .ruby-version
|
14
|
+
- name: Install bundler
|
15
|
+
run: gem install bundler
|
16
|
+
- name: Install dependencies
|
17
|
+
run: bundle install --jobs 4
|
18
|
+
- name: Run test
|
19
|
+
run: bundle exec rubocop lib
|
20
|
+
test:
|
7
21
|
runs-on: ubuntu-latest
|
8
22
|
strategy:
|
9
23
|
matrix:
|
10
|
-
ruby: ['
|
24
|
+
ruby: ['3.4.4', '3.3.8', '3.2.8', '3.1.7']
|
11
25
|
steps:
|
12
26
|
- uses: actions/checkout@master
|
13
27
|
- name: Set up Ruby
|
14
|
-
uses:
|
28
|
+
uses: ruby/setup-ruby@v1
|
15
29
|
with:
|
16
30
|
ruby-version: ${{ matrix.ruby }}
|
17
31
|
- name: Install bundler
|
@@ -19,4 +33,7 @@ jobs:
|
|
19
33
|
- name: Install dependencies
|
20
34
|
run: bundle install --jobs 4
|
21
35
|
- name: Run test
|
36
|
+
env:
|
37
|
+
COVERAGE: true
|
38
|
+
CODECOV_TOKEN: efe02ed0-e754-42a6-bb90-bbf345747bdc
|
22
39
|
run: bundle exec rspec
|
data/.gitignore
ADDED
@@ -0,0 +1,57 @@
|
|
1
|
+
# Created by https://www.gitignore.io/api/ruby
|
2
|
+
# Edit at https://www.gitignore.io/?templates=ruby
|
3
|
+
|
4
|
+
### Ruby ###
|
5
|
+
*.gem
|
6
|
+
*.rbc
|
7
|
+
/.config
|
8
|
+
/coverage/
|
9
|
+
/InstalledFiles
|
10
|
+
/pkg/
|
11
|
+
/spec/reports/
|
12
|
+
/spec/examples.txt
|
13
|
+
/test/tmp/
|
14
|
+
/test/version_tmp/
|
15
|
+
/tmp/
|
16
|
+
|
17
|
+
# Used by dotenv library to load environment variables.
|
18
|
+
# .env
|
19
|
+
|
20
|
+
## Specific to RubyMotion:
|
21
|
+
.dat*
|
22
|
+
.repl_history
|
23
|
+
build/
|
24
|
+
*.bridgesupport
|
25
|
+
build-iPhoneOS/
|
26
|
+
build-iPhoneSimulator/
|
27
|
+
|
28
|
+
## Specific to RubyMotion (use of CocoaPods):
|
29
|
+
#
|
30
|
+
# We recommend against adding the Pods directory to your .gitignore. However
|
31
|
+
# you should judge for yourself, the pros and cons are mentioned at:
|
32
|
+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
33
|
+
#
|
34
|
+
# vendor/Pods/
|
35
|
+
|
36
|
+
## Documentation cache and generated files:
|
37
|
+
/.yardoc/
|
38
|
+
/_yardoc/
|
39
|
+
/doc/
|
40
|
+
/rdoc/
|
41
|
+
|
42
|
+
## Environment normalization:
|
43
|
+
/.bundle/
|
44
|
+
/vendor/bundle
|
45
|
+
/lib/bundler/man/
|
46
|
+
vendor/bundle
|
47
|
+
|
48
|
+
# for a library or gem, you might want to ignore these files since the code is
|
49
|
+
# intended to run in multiple environments; otherwise, check them in:
|
50
|
+
# Gemfile.lock
|
51
|
+
# .ruby-version
|
52
|
+
# .ruby-gemset
|
53
|
+
|
54
|
+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
55
|
+
.rvmrc
|
56
|
+
|
57
|
+
# End of https://www.gitignore.io/api/ruby
|
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.4.4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,161 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [v3.0.0](https://github.com/unhappychoice/circleci-cli/tree/v3.0.0) (2020-08-29)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.3.0...v3.0.0)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Colorize methods are broken [\#219](https://github.com/unhappychoice/circleci-cli/issues/219)
|
10
|
+
|
11
|
+
**Security fixes:**
|
12
|
+
|
13
|
+
- \[Security\] Bump activesupport from 6.0.3 to 6.0.3.1 [\#168](https://github.com/unhappychoice/circleci-cli/pull/168) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
14
|
+
|
15
|
+
**Closed issues:**
|
16
|
+
|
17
|
+
- Add all option [\#225](https://github.com/unhappychoice/circleci-cli/issues/225)
|
18
|
+
- Add default value information to each commands [\#222](https://github.com/unhappychoice/circleci-cli/issues/222)
|
19
|
+
- `builds` should show only current branch by default [\#221](https://github.com/unhappychoice/circleci-cli/issues/221)
|
20
|
+
|
21
|
+
**Merged pull requests:**
|
22
|
+
|
23
|
+
- Make documentations prettier [\#227](https://github.com/unhappychoice/circleci-cli/pull/227) ([unhappychoice](https://github.com/unhappychoice))
|
24
|
+
- Add all option [\#226](https://github.com/unhappychoice/circleci-cli/pull/226) ([unhappychoice](https://github.com/unhappychoice))
|
25
|
+
- Use current branch by default for build command [\#224](https://github.com/unhappychoice/circleci-cli/pull/224) ([unhappychoice](https://github.com/unhappychoice))
|
26
|
+
- docs: add marcotc as a contributor [\#223](https://github.com/unhappychoice/circleci-cli/pull/223) ([allcontributors[bot]](https://github.com/apps/allcontributors))
|
27
|
+
- Remove colorize [\#220](https://github.com/unhappychoice/circleci-cli/pull/220) ([unhappychoice](https://github.com/unhappychoice))
|
28
|
+
- ✨ Detect current git branch for watch command [\#218](https://github.com/unhappychoice/circleci-cli/pull/218) ([marcotc](https://github.com/marcotc))
|
29
|
+
- ⬆️ Bump codecov from 0.2.6 to 0.2.8 [\#217](https://github.com/unhappychoice/circleci-cli/pull/217) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
30
|
+
- ⬆️ Bump codecov from 0.2.5 to 0.2.6 [\#216](https://github.com/unhappychoice/circleci-cli/pull/216) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
31
|
+
- ⬆️ Bump simplecov from 0.18.5 to 0.19.0 [\#215](https://github.com/unhappychoice/circleci-cli/pull/215) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
32
|
+
- ⬆️ Bump rubocop from 0.89.0 to 0.89.1 [\#214](https://github.com/unhappychoice/circleci-cli/pull/214) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
33
|
+
- ⬆️ Bump concurrent-ruby from 1.1.6 to 1.1.7 [\#213](https://github.com/unhappychoice/circleci-cli/pull/213) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
34
|
+
- ⬆️ Bump codecov from 0.2.3 to 0.2.5 [\#212](https://github.com/unhappychoice/circleci-cli/pull/212) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
35
|
+
- ⬆️ Bump rubocop from 0.88.0 to 0.89.0 [\#211](https://github.com/unhappychoice/circleci-cli/pull/211) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
36
|
+
- ⬆️ Bump rubocop-ast from 0.2.0 to 0.3.0 [\#210](https://github.com/unhappychoice/circleci-cli/pull/210) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
37
|
+
- ⬆️ Bump lumberjack from 1.2.6 to 1.2.7 [\#209](https://github.com/unhappychoice/circleci-cli/pull/209) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
38
|
+
- ⬆️ Bump codecov from 0.2.2 to 0.2.3 [\#208](https://github.com/unhappychoice/circleci-cli/pull/208) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
39
|
+
- Add specs [\#207](https://github.com/unhappychoice/circleci-cli/pull/207) ([unhappychoice](https://github.com/unhappychoice))
|
40
|
+
- Bump i18n from 1.8.4 to 1.8.5 [\#205](https://github.com/unhappychoice/circleci-cli/pull/205) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
41
|
+
- Bump codecov from 0.2.1 to 0.2.2 [\#204](https://github.com/unhappychoice/circleci-cli/pull/204) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
42
|
+
- Bump i18n from 1.8.3 to 1.8.4 [\#203](https://github.com/unhappychoice/circleci-cli/pull/203) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
43
|
+
- Bump rubocop-ast from 0.1.0 to 0.2.0 [\#202](https://github.com/unhappychoice/circleci-cli/pull/202) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
44
|
+
- Bump zeitwerk from 2.3.1 to 2.4.0 [\#201](https://github.com/unhappychoice/circleci-cli/pull/201) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
45
|
+
- Bump codecov from 0.2.0 to 0.2.1 [\#200](https://github.com/unhappychoice/circleci-cli/pull/200) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
46
|
+
- Bump rubocop from 0.87.1 to 0.88.0 [\#199](https://github.com/unhappychoice/circleci-cli/pull/199) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
47
|
+
- Bump multi\_json from 1.14.1 to 1.15.0 [\#198](https://github.com/unhappychoice/circleci-cli/pull/198) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
48
|
+
- Bump codecov from 0.1.19 to 0.2.0 [\#197](https://github.com/unhappychoice/circleci-cli/pull/197) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
49
|
+
- Bump rubocop from 0.87.0 to 0.87.1 [\#196](https://github.com/unhappychoice/circleci-cli/pull/196) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
50
|
+
- Bump codecov from 0.1.17 to 0.1.19 [\#195](https://github.com/unhappychoice/circleci-cli/pull/195) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
51
|
+
- Bump rubocop from 0.86.0 to 0.87.0 [\#194](https://github.com/unhappychoice/circleci-cli/pull/194) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
52
|
+
- Bump diff-lcs from 1.4.3 to 1.4.4 [\#193](https://github.com/unhappychoice/circleci-cli/pull/193) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
53
|
+
- Bump json from 2.3.0 to 2.3.1 [\#192](https://github.com/unhappychoice/circleci-cli/pull/192) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
54
|
+
- Bump diff-lcs from 1.4.2 to 1.4.3 [\#191](https://github.com/unhappychoice/circleci-cli/pull/191) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
55
|
+
- Bump rubocop-ast from 0.0.3 to 0.1.0 [\#190](https://github.com/unhappychoice/circleci-cli/pull/190) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
56
|
+
- Bump zeitwerk from 2.3.0 to 2.3.1 [\#189](https://github.com/unhappychoice/circleci-cli/pull/189) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
57
|
+
- Bump rugged from 1.0.0 to 1.0.1 [\#188](https://github.com/unhappychoice/circleci-cli/pull/188) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
58
|
+
- Bump diff-lcs from 1.4.1 to 1.4.2 [\#187](https://github.com/unhappychoice/circleci-cli/pull/187) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
59
|
+
- Bump diff-lcs from 1.3 to 1.4.1 [\#186](https://github.com/unhappychoice/circleci-cli/pull/186) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
60
|
+
- Bump rubocop from 0.85.1 to 0.86.0 [\#185](https://github.com/unhappychoice/circleci-cli/pull/185) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
61
|
+
- Bump parser from 2.7.1.3 to 2.7.1.4 [\#184](https://github.com/unhappychoice/circleci-cli/pull/184) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
62
|
+
- Bump lumberjack from 1.2.5 to 1.2.6 [\#183](https://github.com/unhappychoice/circleci-cli/pull/183) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
63
|
+
- Bump activesupport from 6.0.3.1 to 6.0.3.2 [\#182](https://github.com/unhappychoice/circleci-cli/pull/182) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
64
|
+
- Bump parallel from 1.19.1 to 1.19.2 [\#181](https://github.com/unhappychoice/circleci-cli/pull/181) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
65
|
+
- Bump ast from 2.4.0 to 2.4.1 [\#180](https://github.com/unhappychoice/circleci-cli/pull/180) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
66
|
+
- Bump ffi from 1.13.0 to 1.13.1 [\#179](https://github.com/unhappychoice/circleci-cli/pull/179) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
67
|
+
- Bump codecov from 0.1.16 to 0.1.17 [\#178](https://github.com/unhappychoice/circleci-cli/pull/178) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
68
|
+
- Bump regexp\_parser from 1.7.0 to 1.7.1 [\#177](https://github.com/unhappychoice/circleci-cli/pull/177) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
69
|
+
- Bump rubocop from 0.85.0 to 0.85.1 [\#176](https://github.com/unhappychoice/circleci-cli/pull/176) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
70
|
+
- Bump i18n from 1.8.2 to 1.8.3 [\#175](https://github.com/unhappychoice/circleci-cli/pull/175) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
71
|
+
- Bump ffi from 1.12.2 to 1.13.0 [\#174](https://github.com/unhappychoice/circleci-cli/pull/174) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
72
|
+
- Bump rubocop from 0.84.0 to 0.85.0 [\#173](https://github.com/unhappychoice/circleci-cli/pull/173) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
73
|
+
- Bump coderay from 1.1.2 to 1.1.3 [\#172](https://github.com/unhappychoice/circleci-cli/pull/172) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
74
|
+
- Bump lumberjack from 1.2.4 to 1.2.5 [\#171](https://github.com/unhappychoice/circleci-cli/pull/171) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
75
|
+
- Bump parser from 2.7.1.2 to 2.7.1.3 [\#170](https://github.com/unhappychoice/circleci-cli/pull/170) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
76
|
+
- Bump rubocop from 0.83.0 to 0.84.0 [\#169](https://github.com/unhappychoice/circleci-cli/pull/169) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
77
|
+
- Bump minitest from 5.14.0 to 5.14.1 [\#167](https://github.com/unhappychoice/circleci-cli/pull/167) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
78
|
+
- Bump rubocop from 0.82.0 to 0.83.0 [\#166](https://github.com/unhappychoice/circleci-cli/pull/166) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
79
|
+
- Bump rspec-expectations from 3.9.1 to 3.9.2 [\#165](https://github.com/unhappychoice/circleci-cli/pull/165) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
80
|
+
- Bump public\_suffix from 4.0.4 to 4.0.5 [\#164](https://github.com/unhappychoice/circleci-cli/pull/164) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
81
|
+
- Bump activesupport from 6.0.2.2 to 6.0.3 [\#163](https://github.com/unhappychoice/circleci-cli/pull/163) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
82
|
+
- Bump rspec-core from 3.9.1 to 3.9.2 [\#162](https://github.com/unhappychoice/circleci-cli/pull/162) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
83
|
+
- Bump rspec-support from 3.9.2 to 3.9.3 [\#161](https://github.com/unhappychoice/circleci-cli/pull/161) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
84
|
+
- Bump rb-fsevent from 0.10.3 to 0.10.4 [\#160](https://github.com/unhappychoice/circleci-cli/pull/160) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
85
|
+
- Bump parser from 2.7.1.1 to 2.7.1.2 [\#159](https://github.com/unhappychoice/circleci-cli/pull/159) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
86
|
+
- Bump rubocop from 0.81.0 to 0.82.0 [\#158](https://github.com/unhappychoice/circleci-cli/pull/158) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
87
|
+
- Bump parser from 2.7.1.0 to 2.7.1.1 [\#157](https://github.com/unhappychoice/circleci-cli/pull/157) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
88
|
+
- Bump faraday from 0.17.3 to 1.0.1 [\#155](https://github.com/unhappychoice/circleci-cli/pull/155) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
89
|
+
- Bump pry from 0.13.0 to 0.13.1 [\#154](https://github.com/unhappychoice/circleci-cli/pull/154) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
90
|
+
- Bump github\_changelog\_generator from 1.15.1 to 1.15.2 [\#153](https://github.com/unhappychoice/circleci-cli/pull/153) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
91
|
+
- Bump faraday-http-cache from 2.0.0 to 2.1.0 [\#152](https://github.com/unhappychoice/circleci-cli/pull/152) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
92
|
+
- Update rugged requirement from \>= 0.26, \< 0.100 to \>= 0.26, \< 1.1 [\#151](https://github.com/unhappychoice/circleci-cli/pull/151) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
93
|
+
- Bump parser from 2.7.0.5 to 2.7.1.0 [\#150](https://github.com/unhappychoice/circleci-cli/pull/150) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
94
|
+
- Bump github\_changelog\_generator from 1.15.0 to 1.15.1 [\#149](https://github.com/unhappychoice/circleci-cli/pull/149) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
95
|
+
- Bump public\_suffix from 4.0.3 to 4.0.4 [\#148](https://github.com/unhappychoice/circleci-cli/pull/148) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
96
|
+
- Bump tzinfo from 1.2.6 to 1.2.7 [\#147](https://github.com/unhappychoice/circleci-cli/pull/147) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
97
|
+
- Bump rubocop from 0.77.0 to 0.81.0 [\#146](https://github.com/unhappychoice/circleci-cli/pull/146) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
98
|
+
- Bump guard from 2.16.1 to 2.16.2 [\#145](https://github.com/unhappychoice/circleci-cli/pull/145) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
99
|
+
- Bump octokit from 4.17.0 to 4.18.0 [\#144](https://github.com/unhappychoice/circleci-cli/pull/144) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
100
|
+
- Bump pry from 0.12.2 to 0.13.0 [\#143](https://github.com/unhappychoice/circleci-cli/pull/143) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
101
|
+
- Bump parser from 2.7.0.4 to 2.7.0.5 [\#142](https://github.com/unhappychoice/circleci-cli/pull/142) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
102
|
+
- Bump activesupport from 6.0.2.1 to 6.0.2.2 [\#140](https://github.com/unhappychoice/circleci-cli/pull/140) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
103
|
+
- Bump rspec-expectations from 3.9.0 to 3.9.1 [\#139](https://github.com/unhappychoice/circleci-cli/pull/139) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
104
|
+
- Bump octokit from 4.16.0 to 4.17.0 [\#138](https://github.com/unhappychoice/circleci-cli/pull/138) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
105
|
+
- Update rugged requirement from \>= 0.26, \< 0.29 to \>= 0.26, \< 0.100 [\#137](https://github.com/unhappychoice/circleci-cli/pull/137) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
106
|
+
- Bump zeitwerk from 2.2.2 to 2.3.0 [\#136](https://github.com/unhappychoice/circleci-cli/pull/136) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
107
|
+
- Bump parser from 2.7.0.3 to 2.7.0.4 [\#135](https://github.com/unhappychoice/circleci-cli/pull/135) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
108
|
+
- Bump simplecov-html from 0.12.1 to 0.12.2 [\#133](https://github.com/unhappychoice/circleci-cli/pull/133) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
109
|
+
- Update launchy requirement from ~\> 2.4.3 to \>= 2.4.3, \< 2.6.0 [\#132](https://github.com/unhappychoice/circleci-cli/pull/132) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
110
|
+
- Bump parser from 2.7.0.2 to 2.7.0.3 [\#131](https://github.com/unhappychoice/circleci-cli/pull/131) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
111
|
+
- Bump simplecov from 0.18.4 to 0.18.5 [\#130](https://github.com/unhappychoice/circleci-cli/pull/130) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
112
|
+
- Bump simplecov from 0.18.3 to 0.18.4 [\#129](https://github.com/unhappychoice/circleci-cli/pull/129) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
113
|
+
- Bump simplecov-html from 0.12.0 to 0.12.1 [\#128](https://github.com/unhappychoice/circleci-cli/pull/128) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
114
|
+
- Bump simplecov from 0.18.2 to 0.18.3 [\#127](https://github.com/unhappychoice/circleci-cli/pull/127) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
115
|
+
- Bump simplecov from 0.18.1 to 0.18.2 [\#125](https://github.com/unhappychoice/circleci-cli/pull/125) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
116
|
+
- Bump concurrent-ruby from 1.1.5 to 1.1.6 [\#124](https://github.com/unhappychoice/circleci-cli/pull/124) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
117
|
+
- Bump lumberjack from 1.2.2 to 1.2.4 [\#123](https://github.com/unhappychoice/circleci-cli/pull/123) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
118
|
+
- Bump octokit from 4.15.0 to 4.16.0 [\#122](https://github.com/unhappychoice/circleci-cli/pull/122) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
119
|
+
- Bump lumberjack from 1.2.1 to 1.2.2 [\#121](https://github.com/unhappychoice/circleci-cli/pull/121) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
120
|
+
- Bump simplecov from 0.18.0 to 0.18.1 [\#120](https://github.com/unhappychoice/circleci-cli/pull/120) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
121
|
+
- Bump ffi from 1.12.1 to 1.12.2 [\#119](https://github.com/unhappychoice/circleci-cli/pull/119) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
122
|
+
- Bump simplecov from 0.17.1 to 0.18.0 [\#118](https://github.com/unhappychoice/circleci-cli/pull/118) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
123
|
+
- Bump lumberjack from 1.2.0 to 1.2.1 [\#117](https://github.com/unhappychoice/circleci-cli/pull/117) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
124
|
+
- Bump lumberjack from 1.1.1 to 1.2.0 [\#116](https://github.com/unhappychoice/circleci-cli/pull/116) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
125
|
+
- Bump unicode-display\_width from 1.6.0 to 1.6.1 [\#115](https://github.com/unhappychoice/circleci-cli/pull/115) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
126
|
+
- Bump ffi from 1.11.3 to 1.12.1 [\#114](https://github.com/unhappychoice/circleci-cli/pull/114) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
127
|
+
- Bump i18n from 1.8.1 to 1.8.2 [\#113](https://github.com/unhappychoice/circleci-cli/pull/113) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
128
|
+
- Bump minitest from 5.13.0 to 5.14.0 [\#112](https://github.com/unhappychoice/circleci-cli/pull/112) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
129
|
+
- Bump lumberjack from 1.1.0 to 1.1.1 [\#111](https://github.com/unhappychoice/circleci-cli/pull/111) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
130
|
+
- Bump i18n from 1.7.1 to 1.8.1 [\#110](https://github.com/unhappychoice/circleci-cli/pull/110) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
131
|
+
- Bump parser from 2.7.0.1 to 2.7.0.2 [\#108](https://github.com/unhappychoice/circleci-cli/pull/108) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
132
|
+
- Bump i18n from 1.7.0 to 1.7.1 [\#107](https://github.com/unhappychoice/circleci-cli/pull/107) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
133
|
+
- Bump circleci from 2.0.2 to 2.0.3 [\#106](https://github.com/unhappychoice/circleci-cli/pull/106) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
134
|
+
- Bump lumberjack from 1.0.13 to 1.1.0 [\#104](https://github.com/unhappychoice/circleci-cli/pull/104) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
135
|
+
- Bump public\_suffix from 4.0.2 to 4.0.3 [\#103](https://github.com/unhappychoice/circleci-cli/pull/103) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
136
|
+
|
137
|
+
## [v2.3.0](https://github.com/unhappychoice/circleci-cli/tree/v2.3.0) (2019-10-03)
|
138
|
+
|
139
|
+
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.2.0...v2.3.0)
|
140
|
+
|
141
|
+
**Closed issues:**
|
142
|
+
|
143
|
+
- Fix dot formatting when running ruby specs [\#47](https://github.com/unhappychoice/circleci-cli/issues/47)
|
144
|
+
|
145
|
+
**Merged pull requests:**
|
146
|
+
|
147
|
+
- docs: add fzf as a contributor [\#49](https://github.com/unhappychoice/circleci-cli/pull/49) ([allcontributors[bot]](https://github.com/apps/allcontributors))
|
148
|
+
- ⬆️ Bump listen from 3.1.5 to 3.2.0 [\#48](https://github.com/unhappychoice/circleci-cli/pull/48) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
149
|
+
- Allow newlines from circle [\#46](https://github.com/unhappychoice/circleci-cli/pull/46) ([fzf](https://github.com/fzf))
|
150
|
+
- Adding user option to watch [\#44](https://github.com/unhappychoice/circleci-cli/pull/44) ([fzf](https://github.com/fzf))
|
151
|
+
- ⬆️ Bump codecov from 0.1.14 to 0.1.15 [\#43](https://github.com/unhappychoice/circleci-cli/pull/43) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
152
|
+
- ⬆️ Bump rake from 12.3.3 to 13.0.0 [\#42](https://github.com/unhappychoice/circleci-cli/pull/42) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
153
|
+
- ⬆️ Update faraday requirement from \>= 0.14, \< 0.16 to \>= 0.14, \< 0.17 [\#41](https://github.com/unhappychoice/circleci-cli/pull/41) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
154
|
+
- ⬆️ Bump minitest from 5.12.0 to 5.12.2 [\#40](https://github.com/unhappychoice/circleci-cli/pull/40) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
155
|
+
- docs: add fzf as a contributor [\#39](https://github.com/unhappychoice/circleci-cli/pull/39) ([allcontributors[bot]](https://github.com/apps/allcontributors))
|
2
156
|
|
3
157
|
## [v2.2.0](https://github.com/unhappychoice/circleci-cli/tree/v2.2.0) (2019-09-29)
|
158
|
+
|
4
159
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.1.0...v2.2.0)
|
5
160
|
|
6
161
|
**Closed issues:**
|
@@ -15,9 +170,9 @@
|
|
15
170
|
- Handle GitHub repository names that contain '.' [\#35](https://github.com/unhappychoice/circleci-cli/pull/35) ([mattbrictson](https://github.com/mattbrictson))
|
16
171
|
- :+1: Create GitHub action config file [\#33](https://github.com/unhappychoice/circleci-cli/pull/33) ([unhappychoice](https://github.com/unhappychoice))
|
17
172
|
- Changelog [\#32](https://github.com/unhappychoice/circleci-cli/pull/32) ([unhappychoice](https://github.com/unhappychoice))
|
18
|
-
- Change light black color to white to make more readable [\#31](https://github.com/unhappychoice/circleci-cli/pull/31) ([unhappychoice](https://github.com/unhappychoice))
|
19
173
|
|
20
174
|
## [v2.1.0](https://github.com/unhappychoice/circleci-cli/tree/v2.1.0) (2019-09-23)
|
175
|
+
|
21
176
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v2.0.0...v2.1.0)
|
22
177
|
|
23
178
|
**Closed issues:**
|
@@ -27,17 +182,17 @@
|
|
27
182
|
|
28
183
|
**Merged pull requests:**
|
29
184
|
|
185
|
+
- Change light black color to white to make more readable [\#31](https://github.com/unhappychoice/circleci-cli/pull/31) ([unhappychoice](https://github.com/unhappychoice))
|
30
186
|
- Last failed option [\#29](https://github.com/unhappychoice/circleci-cli/pull/29) ([unhappychoice](https://github.com/unhappychoice))
|
31
187
|
- :+1: Add last option to build command [\#28](https://github.com/unhappychoice/circleci-cli/pull/28) ([unhappychoice](https://github.com/unhappychoice))
|
188
|
+
- Reimplement watch command to watch project [\#27](https://github.com/unhappychoice/circleci-cli/pull/27) ([unhappychoice](https://github.com/unhappychoice))
|
32
189
|
|
33
190
|
## [v2.0.0](https://github.com/unhappychoice/circleci-cli/tree/v2.0.0) (2019-09-22)
|
34
|
-
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v1.0.0...v2.0.0)
|
35
191
|
|
36
|
-
|
37
|
-
|
38
|
-
- Reimplement watch command to watch project [\#27](https://github.com/unhappychoice/circleci-cli/pull/27) ([unhappychoice](https://github.com/unhappychoice))
|
192
|
+
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v1.0.0...v2.0.0)
|
39
193
|
|
40
194
|
## [v1.0.0](https://github.com/unhappychoice/circleci-cli/tree/v1.0.0) (2019-09-22)
|
195
|
+
|
41
196
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.4...v1.0.0)
|
42
197
|
|
43
198
|
**Merged pull requests:**
|
@@ -45,9 +200,11 @@
|
|
45
200
|
- Rename gem [\#25](https://github.com/unhappychoice/circleci-cli/pull/25) ([unhappychoice](https://github.com/unhappychoice))
|
46
201
|
|
47
202
|
## [v0.6.4](https://github.com/unhappychoice/circleci-cli/tree/v0.6.4) (2019-09-22)
|
203
|
+
|
48
204
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.3...v0.6.4)
|
49
205
|
|
50
206
|
## [v0.6.3](https://github.com/unhappychoice/circleci-cli/tree/v0.6.3) (2019-09-22)
|
207
|
+
|
51
208
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.2...v0.6.3)
|
52
209
|
|
53
210
|
**Closed issues:**
|
@@ -78,6 +235,7 @@
|
|
78
235
|
- Update highline requirement from ~\> 1.7.8 to \>= 1.7.8, \< 2.1.0 [\#4](https://github.com/unhappychoice/circleci-cli/pull/4) ([dependabot-preview[bot]](https://github.com/apps/dependabot-preview))
|
79
236
|
|
80
237
|
## [v0.6.2](https://github.com/unhappychoice/circleci-cli/tree/v0.6.2) (2018-01-30)
|
238
|
+
|
81
239
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.1...v0.6.2)
|
82
240
|
|
83
241
|
**Merged pull requests:**
|
@@ -85,18 +243,23 @@
|
|
85
243
|
- Update dependency [\#3](https://github.com/unhappychoice/circleci-cli/pull/3) ([unhappychoice](https://github.com/unhappychoice))
|
86
244
|
|
87
245
|
## [v0.6.1](https://github.com/unhappychoice/circleci-cli/tree/v0.6.1) (2017-08-03)
|
246
|
+
|
88
247
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.6.0...v0.6.1)
|
89
248
|
|
90
249
|
## [v0.6.0](https://github.com/unhappychoice/circleci-cli/tree/v0.6.0) (2017-03-25)
|
250
|
+
|
91
251
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.5.1...v0.6.0)
|
92
252
|
|
93
253
|
## [v0.5.1](https://github.com/unhappychoice/circleci-cli/tree/v0.5.1) (2017-03-22)
|
254
|
+
|
94
255
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.5.0...v0.5.1)
|
95
256
|
|
96
257
|
## [v0.5.0](https://github.com/unhappychoice/circleci-cli/tree/v0.5.0) (2017-03-22)
|
258
|
+
|
97
259
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.4.1...v0.5.0)
|
98
260
|
|
99
261
|
## [v0.4.1](https://github.com/unhappychoice/circleci-cli/tree/v0.4.1) (2017-02-11)
|
262
|
+
|
100
263
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.4.0...v0.4.1)
|
101
264
|
|
102
265
|
**Merged pull requests:**
|
@@ -104,24 +267,31 @@
|
|
104
267
|
- Fix watch command [\#2](https://github.com/unhappychoice/circleci-cli/pull/2) ([unhappychoice](https://github.com/unhappychoice))
|
105
268
|
|
106
269
|
## [v0.4.0](https://github.com/unhappychoice/circleci-cli/tree/v0.4.0) (2017-02-11)
|
270
|
+
|
107
271
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.2...v0.4.0)
|
108
272
|
|
109
273
|
## [v0.3.2](https://github.com/unhappychoice/circleci-cli/tree/v0.3.2) (2016-03-25)
|
274
|
+
|
110
275
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.1...v0.3.2)
|
111
276
|
|
112
277
|
## [v0.3.1](https://github.com/unhappychoice/circleci-cli/tree/v0.3.1) (2016-03-11)
|
278
|
+
|
113
279
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.3.0...v0.3.1)
|
114
280
|
|
115
281
|
## [v0.3.0](https://github.com/unhappychoice/circleci-cli/tree/v0.3.0) (2016-03-11)
|
282
|
+
|
116
283
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.2.1...v0.3.0)
|
117
284
|
|
118
285
|
## [v0.2.1](https://github.com/unhappychoice/circleci-cli/tree/v0.2.1) (2016-02-24)
|
286
|
+
|
119
287
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.2.0...v0.2.1)
|
120
288
|
|
121
289
|
## [v0.2.0](https://github.com/unhappychoice/circleci-cli/tree/v0.2.0) (2016-02-24)
|
290
|
+
|
122
291
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.3...v0.2.0)
|
123
292
|
|
124
293
|
## [v0.1.3](https://github.com/unhappychoice/circleci-cli/tree/v0.1.3) (2016-02-24)
|
294
|
+
|
125
295
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.2...v0.1.3)
|
126
296
|
|
127
297
|
**Merged pull requests:**
|
@@ -129,12 +299,17 @@
|
|
129
299
|
- Fix regexp for find repository name [\#1](https://github.com/unhappychoice/circleci-cli/pull/1) ([unhappychoice](https://github.com/unhappychoice))
|
130
300
|
|
131
301
|
## [v0.1.2](https://github.com/unhappychoice/circleci-cli/tree/v0.1.2) (2016-02-23)
|
302
|
+
|
132
303
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.1...v0.1.2)
|
133
304
|
|
134
305
|
## [v0.1.1](https://github.com/unhappychoice/circleci-cli/tree/v0.1.1) (2016-02-23)
|
306
|
+
|
135
307
|
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/v0.1.0...v0.1.1)
|
136
308
|
|
137
309
|
## [v0.1.0](https://github.com/unhappychoice/circleci-cli/tree/v0.1.0) (2016-02-23)
|
138
310
|
|
311
|
+
[Full Changelog](https://github.com/unhappychoice/circleci-cli/compare/2d9baafdd17039e12d415a608a023d14edcec9c4...v0.1.0)
|
312
|
+
|
313
|
+
|
139
314
|
|
140
|
-
\* *This
|
315
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|