Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v5.4.0 (September 2026)
- No changes

v5.3.0 (August 2026)
- Add support for managing Mappings through the Mappings Manager
- Add support for saving column assignments from the upload mapper
Expand Down
4 changes: 3 additions & 1 deletion dradis-csv.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ Gem::Specification.new do |spec|
spec.authors = ['Daniel Martin']
spec.homepage = 'http://dradis.com'

spec.files = `git ls-files`.split("\n")
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir['{app,config,db,lib,templates}/**/*', 'CHANGELOG', 'CHANGELOG.md', 'LICENSE', 'Rakefile', 'README.md']
end
spec.executables = spec.files.grep(%r{^bin/}).map { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(spec|features)/})

Expand Down
2 changes: 1 addition & 1 deletion lib/dradis/plugins/csv/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def self.gem_version

module VERSION
MAJOR = 5
MINOR = 3
MINOR = 4
TINY = 0
PRE = nil

Expand Down