Skip to content

Commit 2c10a9b

Browse files
committed
Prepare release 2.11.0
1 parent 846d453 commit 2c10a9b

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.aspell.pws

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
personal_ws-1.1 en 121
1+
personal_ws-1.1 en 122
22
Barushev
33
Bugfix
44
CaptionAbstract
@@ -92,6 +92,7 @@ multi
9292
neccessary
9393
params
9494
pdf
95+
philister
9596
photoshop
9697
png
9798
popen

Changelog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.11.0
2+
- Fix an error with weird timestamps.
3+
Thanks to philister for fixing it (github pull request #45).
4+
- Set frozen_string_literal to false to work with newer Ruby versions.
5+
16
2.10.4
27
- Maintenance release.
38

lib/mini_exiftool.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# Simple OO access to the ExifTool command-line application.
2929
class MiniExiftool
3030

31-
VERSION = '2.10.4'
31+
VERSION = '2.11.0'
3232

3333
# Name of the ExifTool command-line application
3434
@@cmd = 'exiftool'

mini_exiftool.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
# -*- encoding: utf-8 -*-
2-
# stub: mini_exiftool 2.10.4 ruby lib
2+
# stub: mini_exiftool 2.11.0 ruby lib
33
#
44
# This file is automatically generated by rim.
55
# PLEASE DO NOT EDIT IT DIRECTLY!
66
# Change the values in Rim.setup in Rakefile instead.
77

88
Gem::Specification.new do |s|
99
s.name = "mini_exiftool"
10-
s.version = "2.10.4"
10+
s.version = "2.11.0"
1111

1212
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1313
s.require_paths = ["lib"]
1414
s.authors = ["Jan Friedrich"]
15-
s.date = "2023-10-06"
15+
s.date = "2024-03-26"
1616
s.description = "This library is a wrapper for the ExifTool command-line application\n(https://exiftool.org) written by Phil Harvey.\nIt provides the full power of ExifTool to Ruby: reading and writing of\nEXIF-data, IPTC-data and XMP-data.\n"
1717
s.email = "janfri26@gmail.com"
1818
s.files = ["./.aspell.pws", "COPYING", "Changelog", "Gemfile", "README.md", "Rakefile", "Tutorial.md", "examples/copy_icc_profile.rb", "examples/external_photo.rb", "examples/print_portraits.rb", "examples/shift_time.rb", "examples/show_speedup_with_fast_option.rb", "lib/mini_exiftool.rb", "mini_exiftool.gemspec", "regtest/read_all.rb", "regtest/read_all.yml", "test/data", "test/data/Bad_PreviewIFD.jpg", "test/data/Canon.jpg", "test/data/INFORMATION", "test/data/invalid_byte_sequence_in_utf8.json", "test/data/invalid_rational.json", "test/data/test.jpg", "test/data/test.jpg.json", "test/data/test_coordinates.jpg", "test/data/test_encodings.jpg", "test/data/test_special_dates.jpg", "test/helpers_for_test.rb", "test/test_bad_preview_ifd.rb", "test/test_class_methods.rb", "test/test_composite.rb", "test/test_copy_tags_from.rb", "test/test_dumping.rb", "test/test_encodings.rb", "test/test_filename_access.rb", "test/test_from_hash.rb", "test/test_instance_methods.rb", "test/test_invalid_byte_sequence_in_utf8.rb", "test/test_invalid_rational.rb", "test/test_io.rb", "test/test_pstore.rb", "test/test_read.rb", "test/test_read_coordinates.rb", "test/test_read_numerical.rb", "test/test_save.rb", "test/test_special.rb", "test/test_special_dates.rb", "test/test_write.rb"]
1919
s.homepage = "https://github.com/janfri/mini_exiftool"
2020
s.licenses = ["LGPL-2.1"]
2121
s.post_install_message = "+-----------------------------------------------------------------------+\n| Please ensure you have installed exiftool at least version 7.65 |\n| and it's found in your PATH (Try \"exiftool -ver\" on your commandline).|\n| For more details see |\n| https://exiftool.org/install.html |\n| You need also Ruby 1.9 or higher. |\n| If you need support for Ruby 1.8 or exiftool prior 7.65 install |\n| mini_exiftool version < 2.0.0. |\n+-----------------------------------------------------------------------+\n"
22-
s.rubygems_version = "3.5.0.dev"
22+
s.rubygems_version = "3.6.0.dev"
2323
s.summary = "This library is a wrapper for the ExifTool command-line application (https://exiftool.org)."
2424

2525
s.specification_version = 4

0 commit comments

Comments
 (0)