Compare commits

..

No commits in common. "f832581881feabe8e060968d2c842f16368ae98b" and "899484470285668b1faa263a9aace513e436ff24" have entirely different histories.

3 changed files with 4 additions and 11 deletions

View File

@ -1,11 +1,3 @@
Version 2.3.0
24-Dec-2023
- FIX: replace test tiff that triggers Clam-AV
- FIX: certain heif files could not be parsed
- FEATURE: Adds animated support for png
Version 2.2.7
23-May-2023

View File

@ -6,14 +6,15 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.9.2'
s.authors = ["Stephen Sykes"]
s.date = %q{2021-02-28}
s.description = %q{FastImage finds the size or type of an image given its uri by fetching as little as needed.}
s.email = %q{sdsykes@gmail.com}
s.extra_rdoc_files = [
"README.md"
"README.textile"
]
s.files = [
"MIT-LICENSE",
"README.md",
"README.textile",
"lib/fastimage.rb",
"lib/fastimage/version.rb",
]

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
class FastImage
VERSION = '2.3.0'
VERSION = '2.2.7'
end