spandx 0.16.0 → 0.16.1
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/CHANGELOG.md +7 -2
- data/lib/spandx/cli/printers/table.rb +1 -1
- data/lib/spandx/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba0b42d3a015296733d9666c1d4b3b4bf89a86622941dd608eca9eef258f4e7a
|
4
|
+
data.tar.gz: 2dc3760f3e265a751a1b5affabfb13abeceb77d9c5980203fabea0758cc64347
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e41d8d13f883bf9def9c684ff633c6d78077a25e999be320d5841e885cd3a45df39486a12fbee0eef8f632e32236dd294a1303901a401214b66c0dc387fd531
|
7
|
+
data.tar.gz: 451efa448a0c702593e694e25ef0d62dbe49683b33d304951284642176340a94fd3e355978782ebac0d32a5cf224a962f2c80b3afbb489e1ce0b1204191cc9e4
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
Version 0.16.
|
1
|
+
Version 0.16.1
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
@@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
9
9
|
|
10
10
|
## [Unreleased]
|
11
11
|
|
12
|
+
## [0.16.1] - 2020-11-19
|
13
|
+
### Fixed
|
14
|
+
- Start spinner for table printer only
|
15
|
+
|
12
16
|
## [0.16.0] - 2020-11-19
|
13
17
|
### Changed
|
14
18
|
- Pull smaller license cache.
|
@@ -216,7 +220,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
216
220
|
### Added
|
217
221
|
- Provide ruby API to the latest SPDX catalogue.
|
218
222
|
|
219
|
-
[Unreleased]: https://github.com/spandx/spandx/compare/v0.16.
|
223
|
+
[Unreleased]: https://github.com/spandx/spandx/compare/v0.16.1...HEAD
|
224
|
+
[0.16.1]: https://github.com/spandx/spandx/compare/v0.16.0...v0.16.1
|
220
225
|
[0.16.0]: https://github.com/spandx/spandx/compare/v0.15.1...v0.16.0
|
221
226
|
[0.15.1]: https://github.com/spandx/spandx/compare/v0.15.0...v0.15.1
|
222
227
|
[0.15.0]: https://github.com/spandx/spandx/compare/v0.14.0...v0.15.0
|
@@ -8,7 +8,6 @@ module Spandx
|
|
8
8
|
|
9
9
|
def initialize(output: $stderr)
|
10
10
|
@spinner = TTY::Spinner.new('[:spinner] Scanning...', output: output, clear: true, format: :dots)
|
11
|
-
@spinner.auto_spin
|
12
11
|
end
|
13
12
|
|
14
13
|
def match?(format)
|
@@ -16,6 +15,7 @@ module Spandx
|
|
16
15
|
end
|
17
16
|
|
18
17
|
def print_header(_io)
|
18
|
+
@spinner.auto_spin
|
19
19
|
@dependencies = SortedSet.new
|
20
20
|
end
|
21
21
|
|
data/lib/spandx/version.rb
CHANGED