diff options
| author | mo khan <mo.khan@gmail.com> | 2020-05-16 20:07:32 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-05-16 20:07:32 -0600 |
| commit | 6b392af62854d28b9f12fe292e21b79baa25c63b (patch) | |
| tree | 31418801a07c14cf3af06e4c74acee23662f762b | |
| parent | 4e9e1a1dbfbf272fb47c95a9d00e5a30abb93bff (diff) | |
Include .c and .h files in gemv0.13.1
| -rw-r--r-- | CHANGELOG.md | 6 | ||||
| -rw-r--r-- | Gemfile.lock | 2 | ||||
| -rw-r--r-- | lib/spandx/version.rb | 2 | ||||
| -rw-r--r-- | spandx.gemspec | 1 |
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 15842fe..41ce307 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -Version 0.13.0 +Version 0.13.1 # Changelog @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.1] - 2020-05-16 +### Fixed +- Add `ext/**/*.c` and `ext/**/*.h` to list of files. + ## [0.13.0] - 2020-05-12 ### Added - Add progress bar diff --git a/Gemfile.lock b/Gemfile.lock index bb3be72..c94a123 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - spandx (0.13.0) + spandx (0.13.1) addressable (~> 2.7) bundler (>= 1.16, < 3.0.0) net-hippie (~> 0.3) diff --git a/lib/spandx/version.rb b/lib/spandx/version.rb index cff2473..d26e19a 100644 --- a/lib/spandx/version.rb +++ b/lib/spandx/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Spandx - VERSION = '0.13.0' + VERSION = '0.13.1' end diff --git a/spandx.gemspec b/spandx.gemspec index 4610f66..033c824 100644 --- a/spandx.gemspec +++ b/spandx.gemspec @@ -22,6 +22,7 @@ Gem::Specification.new do |spec| spec.files = Dir.chdir(File.expand_path(__dir__)) do Dir.glob('exe/*') + + Dir.glob('ext/**/**/*.{rb,c,h}') + Dir.glob('lib/**/**/*.{rb}') + Dir.glob('*.{md,gemspec,txt}') end |
