Skip to content

Commit

Permalink
Bumping version to 6.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
flyerhzm committed Dec 12, 2020
1 parent 0e4acb8 commit 62945b7
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Next Release

## 6.1.1 (12/12/2020)

* Add support Rails 6.1
* Make whitelist thread safe

## 6.1.0 (12/28/2019)

* Add skip_html_injection flag
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.rails-6.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"

gemspec

gem 'rails', '6.0.0'
gem 'rails', '~> 6.0.0'
gem 'sqlite3'
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
gem 'activerecord-import'
Expand Down
15 changes: 15 additions & 0 deletions Gemfile.rails-6.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
source "https://rubygems.org"

gemspec

gem 'rails', '~> 6.1.0'
gem 'sqlite3'
gem 'activerecord-jdbcsqlite3-adapter', platforms: [:jruby]
gem 'activerecord-import'

gem "rspec"

platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubinius-developer_tools'
end
2 changes: 1 addition & 1 deletion lib/bullet/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Bullet
VERSION = '6.1.0'
VERSION = '6.1.1'
end

0 comments on commit 62945b7

Please sign in to comment.