Compare commits

...

2 Commits

Author SHA1 Message Date
Stephen Sykes
f832581881 Fix file names 2023-12-24 12:02:45 +02:00
Stephen Sykes
c763b215cf Release 2.3.0 2023-12-24 12:01:26 +02:00
3 changed files with 11 additions and 4 deletions

View File

@ -1,3 +1,11 @@
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,15 +6,14 @@ 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.textile"
"README.md"
]
s.files = [
"MIT-LICENSE",
"README.textile",
"README.md",
"lib/fastimage.rb",
"lib/fastimage/version.rb",
]

View File

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