Commit 6b392af
Changed files (4)
lib/spandx/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Spandx
- VERSION = '0.13.0'
+ VERSION = '0.13.1'
end
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
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)
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