Skip to content

Commit bc58bed

Browse files
committed
Bump Version to 3.1.0
* Add Changelog generator * Update CHANGELOG.md
1 parent b9a3903 commit bc58bed

File tree

4 files changed

+36
-2
lines changed

4 files changed

+36
-2
lines changed

CHANGELOG.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
# Change Log
1+
# Change log
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [v3.1.0](https://github.com/petems/tugboat/tree/v3.1.0) (2017-07-13)
6+
[Full Changelog](https://github.com/petems/tugboat/compare/v3.0.0...v3.1.0)
7+
8+
**Closed issues:**
9+
10+
- Arbitrary Code Injection Or Denial Of Service \(DoS\) Through Unsafe Middleware in petems/tugboat \(master\) [\#272](https://github.com/petems/tugboat/issues/272)
11+
- Insecure Storage Of Cache Files in petems/tugboat \(master\) [\#271](https://github.com/petems/tugboat/issues/271)
12+
- Cross-site Scripting \(XSS\) Through Unescaped JSON String in petems/tugboat \(master\) [\#270](https://github.com/petems/tugboat/issues/270)
13+
14+
**Merged pull requests:**
15+
16+
- Updates for Ruby 2.4.1 [\#277](https://github.com/petems/tugboat/pull/277) ([petems](https://github.com/petems))
17+
- Update middleware gem [\#276](https://github.com/petems/tugboat/pull/276) ([petems](https://github.com/petems))
18+
- Update Rubocop [\#275](https://github.com/petems/tugboat/pull/275) ([petems](https://github.com/petems))
19+
- Switch to safe\_yaml fork [\#274](https://github.com/petems/tugboat/pull/274) ([petems](https://github.com/petems))
20+
- Update activesupport [\#273](https://github.com/petems/tugboat/pull/273) ([petems](https://github.com/petems))
221

322
## [v3.0.0](https://github.com/petems/tugboat/tree/v3.0.0) (2017-06-30)
423
[Full Changelog](https://github.com/petems/tugboat/compare/v2.2.4...v3.0.0)

Rakefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,17 @@ RuboCop::RakeTask.new(:rubocop) do |t|
1717
end
1818

1919
task default: [:spec, :features]
20+
21+
begin
22+
require 'github_changelog_generator/task'
23+
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
24+
require 'tugboat/version'
25+
version = Tugboat::VERSION
26+
config.user = 'petems'
27+
config.project = 'tugboat'
28+
config.future_release = "v#{version}"
29+
config.header = "# Change log\n\nAll notable changes to this project will be documented in this file."
30+
config.exclude_labels = %w{duplicate question invalid wontfix}
31+
end
32+
rescue LoadError
33+
end

lib/tugboat/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Tugboat
2-
VERSION = '3.0.0'.freeze
2+
VERSION = '3.1.0'.freeze
33
end

tugboat.gemspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ Gem::Specification.new do |gem|
4444
gem.add_development_dependency 'rubocop', '0.49.1'
4545
gem.add_development_dependency 'rubocop-rspec', '1.15.1'
4646
gem.add_development_dependency 'license_finder', '3.0.0'
47+
gem.add_development_dependency 'github_changelog_generator'
4748

4849
gem.post_install_message = '***************************************'
4950
gem.post_install_message = ' . o .. '

0 commit comments

Comments
 (0)