diff options
| author | mo khan <mo.khan@gmail.com> | 2020-11-19 16:29:12 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-11-19 16:29:12 -0700 |
| commit | a18f47bae6e509ec75d8bcdff5157d80d928ece0 (patch) | |
| tree | 548458ef28a46d6b34d5500ece0a2695da41f70b | |
| parent | e8e07d5766dbf09343b571bf5a244726986dd04b (diff) | |
fix: remove spinner for streaming reportsv0.16.1
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | lib/spandx/cli/printers/table.rb | 2 | ||||
| -rw-r--r-- | lib/spandx/version.rb | 2 |
4 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index e5ce52a..487469c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.16.0 +Version 0.16.1 # Changelog @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.1] - 2020-11-19 +### Fixed +- Start spinner for table printer only + ## [0.16.0] - 2020-11-19 ### Changed - Pull smaller license cache. @@ -216,7 +220,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Provide ruby API to the latest SPDX catalogue. -[Unreleased]: https://github.com/spandx/spandx/compare/v0.16.0...HEAD +[Unreleased]: https://github.com/spandx/spandx/compare/v0.16.1...HEAD +[0.16.1]: https://github.com/spandx/spandx/compare/v0.16.0...v0.16.1 [0.16.0]: https://github.com/spandx/spandx/compare/v0.15.1...v0.16.0 [0.15.1]: https://github.com/spandx/spandx/compare/v0.15.0...v0.15.1 [0.15.0]: https://github.com/spandx/spandx/compare/v0.14.0...v0.15.0 diff --git a/Gemfile.lock b/Gemfile.lock index 80f79af..8f3524d 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spandx (0.16.0) + spandx (0.16.1) addressable (~> 2.7) bundler (>= 1.16, < 3.0.0) net-hippie (~> 1.0) diff --git a/lib/spandx/cli/printers/table.rb b/lib/spandx/cli/printers/table.rb index e9672e8..13899e0 100644 --- a/lib/spandx/cli/printers/table.rb +++ b/lib/spandx/cli/printers/table.rb @@ -8,7 +8,6 @@ module Spandx def initialize(output: $stderr) @spinner = TTY::Spinner.new('[:spinner] Scanning...', output: output, clear: true, format: :dots) - @spinner.auto_spin end def match?(format) @@ -16,6 +15,7 @@ module Spandx end def print_header(_io) + @spinner.auto_spin @dependencies = SortedSet.new end diff --git a/lib/spandx/version.rb b/lib/spandx/version.rb index 533dfc2..67b2980 100644 --- a/lib/spandx/version.rb +++ b/lib/spandx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Spandx - VERSION = '0.16.0' + VERSION = '0.16.1' end |
