Skip to content

Commit

Permalink
Merge e06240b into bcbfebc
Browse files Browse the repository at this point in the history
  • Loading branch information
tebs committed Feb 11, 2021
2 parents bcbfebc + e06240b commit c53025c
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@ language: ruby
rvm:
- 2.5.8
- 2.6.6
- 2.7.2
gemfile:
- gemfiles/4.2.gemfile
- gemfiles/5.0.gemfile
- gemfiles/6.0.gemfile
before_install:
- gem install bundler -v 1.11.2
- sudo apt-get -qq update
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## [1.0.0] - 2021-02-11
### Breaking change
- Drop support for Rails 4.x [Pull Request](https://github.com/xing/pdf_cover/pull/12)

## [0.3.2] - 2020-11-06
### Changed
- Update dependencies with security vulnerabilities detected [Pull Request](https://github.com/xing/pdf_cover/pull/11)
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/5.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source "https://rubygems.org"

gem "rails", "~> 5.0.0"
gem "rails", "~> 5.2.4"

gemspec path: "../"
2 changes: 1 addition & 1 deletion gemfiles/4.2.gemfile → gemfiles/6.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

source "https://rubygems.org"

gem "rails", "~> 4.2.0"
gem "rails", "~> 6.1.2"

gemspec path: "../"
2 changes: 1 addition & 1 deletion lib/pdf_cover.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module PdfCover
module ClassMethods
module CarrierWave
# When called in the context of a CarrierWave::Uploader::Base subclass,
# this method will add a processor to the currenct attachment or version
# this method will add a processor to the current attachment or version
# that generates a JPEG with 95 quality from the first page of the given
# PDF.
#
Expand Down
2 changes: 1 addition & 1 deletion lib/pdf_cover/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PdfCover
VERSION = "0.3.2".freeze
VERSION = "1.0.0".freeze
end
4 changes: 2 additions & 2 deletions pdf_cover.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.add_development_dependency "activesupport", ">= 4.2", "< 6.0.3.1"
spec.add_development_dependency "activesupport", ">= 5.0"

spec.add_development_dependency "appraisal"

Expand All @@ -40,7 +40,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "coveralls_reborn"

spec.add_development_dependency "paperclip", "=6.1.0"
spec.add_development_dependency "carrierwave", "~> 0.10"
spec.add_development_dependency "carrierwave", "~> 2.1"

spec.add_development_dependency "rmagick", "~> 2.13.2"

Expand Down

0 comments on commit c53025c

Please sign in to comment.