diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-27 22:37:52 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-27 22:37:52 -0700 |
| commit | 3527a211ef7eef0320dc6c7b8072bab74713bcef (patch) | |
| tree | 3c47818913d29be97868a1d87b1ae83da0407214 | |
| parent | c9a296f6f7f31a78ecf4a04f312939db2b8c4448 (diff) | |
Handle nil licenses from rubygems APIv0.1.7
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | lib/spandx/version.rb | 2 |
3 files changed, 9 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 118d250..837ce62 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.1.6 +Version 0.1.7 # Changelog @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - nil +## [0.1.7] - 2020-01-28 +### Added +- Handle `nil` licenses from rubygems.org API response + ## [0.1.6] - 2020-01-27 ### Added - Scan csproj files that depend on other project files @@ -43,7 +47,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/mokhan/spandx/compare/v0.1.6...HEAD +[Unreleased]: https://github.com/mokhan/spandx/compare/v0.1.7...HEAD +[0.1.7]: https://github.com/mokhan/spandx/compare/v0.1.6...v0.1.7 [0.1.6]: https://github.com/mokhan/spandx/compare/v0.1.5...v0.1.6 [0.1.5]: https://github.com/mokhan/spandx/compare/v0.1.4...v0.1.5 [0.1.4]: https://github.com/mokhan/spandx/compare/v0.1.3...v0.1.4 diff --git a/Gemfile.lock b/Gemfile.lock index 1d016db..659436a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spandx (0.1.6) + spandx (0.1.7) bundler (>= 1.16, < 3.0.0) net-hippie (~> 0.3) nokogiri (~> 1.10) diff --git a/lib/spandx/version.rb b/lib/spandx/version.rb index ebcc51f..e2b190e 100644 --- a/lib/spandx/version.rb +++ b/lib/spandx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Spandx - VERSION = '0.1.6' + VERSION = '0.1.7' end |
