## 1.10.6 (2015-07-22)
Workarounds:
- only warn on invalid gemspecs (@indirect)
Bugfixes:
- fix installing dependencies in the correct order (#3799, @pducks32)
- fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
- fix `install_if` conditionals when using the block form (@danieltdt)
== Thu Jul 03 2015
* Ruby/GSL 1.16.0.6
* rb-gsl and gsl are now the same gem
== Thu Jul 02 2015
* Ruby/GSL 1.16.0.5
* Optional narray support
* Drop Ruby 1.8 support
* Drop support for GSL < 1.15
v4.3.3
* Fixed a bug where, if you would reference any image info inside Image#format
{} or Image#combine_options {}, this info would be cached even after these
methods were executed, leaving the MiniMagick::Image instance with stale
data.
v4.3.2
* Fixed MiniMagick::Image.new("...").format("<ext>") not working if the image
didn't have an extension.
v4.3.1
* Reverted making MiniMagick configuration thread safe, until we figure out
what caused #328.
v4.3.0
* Fixed early reportings of ImageMagick/GraphicsMagick not being installed by
removing the automagically generated methods (commit)
* MiniMagick.with_cli is now thread-safe, as well as other configuration
options
v4.2.10
* Make GraphicsMagick's mogrify support the "-gravity" option.
v4.2.9
* Fixes MiniMagick::Image#size to properly return filesize in bytes
* Added MiniMagick::Image#human_size which holds ImageMagick's human-readable
size string.
v4.2.8
This version has been yanked as it holds a backwards incompatibility which
breaks CarrierWave.
* MiniMagick.with_cli will now restore the old CLI even when errors occur.
* Fixed race condition which caused the MiniMagick::Tool methods not to be
defined yet (can happen in multithreaded environments)
Backwards compatibility
* MiniMagick::Image#size now returns a string with the filesize unit included
## RMagick 2.15.4
- Improved C extension building process - @u338steven
## RMagick 2.15.3
- Fixed ImageMagick version detection on Windows - @maisumakun
go1.5.1 (released 2015/09/08) includes bug fixes to the compiler, assembler,
and the fmt, net/textproto, net/http, and runtime packages. See the Go 1.5.1
milestone on our issue tracker for details:
https://github.com/golang/go/issues?q=milestone%3AGo1.5.1
4.1.1 (2015-08-21)
------------------
* Remove `RubyProf` from Gemfile and a test, due to it providing no substantial benefit while increasing problems building bundles under Rubinius.
4.1.0 (2015-08-16)
------------------
* Addition of `now_and_every` method; fires block immediately, then sets recurring timer.
* Includes `now_and_after` method; does the same as above for one-shot timers: essentially a "two-shot" timer.
Separate the logs between examples to allow for easier understanding.
# Log Splitter for RSpec
This `RSpec` plugin allows you to change the logger for your library for each
separate example. This gives the ability to see the log output for each
specific test.
Shim to load environment variables from `.env` into `ENV` in *development*.
Storing [configuration in the environment](http://www.12factor.net/config) is
one of the tenets of a [twelve-factor app](http://www.12factor.net/). Anything
that is likely to change between deployment environments-such as resource
handles for databases or credentials for external services - should be
extracted from the code into environment variables.
But it is not always practical to set environment variables on development
machines or continuous integration servers where multiple projects are
run. dotenv loads variables from a `.env` file into `ENV` when the environment
is bootstrapped.
# News
## 3.1.3 - 2015-07-26 {#version-3-1-3}
It's a bug fix release.
### Improvements
* Removed unused `TODO` file. [GitHub#108][Patch by takiy33]
### Fixes
* `--location`: Fixed a bug that `--location LINE` doesn't work when
test script is specified as relative path. [Reported by TOMITA Masahiro]
The following doesn't work:
% ruby ./test.rb --location 10
The following works:
% ruby test.rb --location 10
### Thanks
* takiy33
* TOMITA Masahiro