8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb56ce commit 12140ceCopy full SHA for 12140ce
CHANGELOG.md
@@ -2,6 +2,10 @@
2
3
## master
4
5
+## Version 2.2.4 (2025-06-05)
6
+
7
+* fix write to target test with libvips 8.17 [jcupitt]
8
9
## Version 2.2.3 (2025-02-06)
10
11
* fix `Image#add_alpha()` with libvips 8.16 [kleisauke]
spec/connection_spec.rb
@@ -66,7 +66,9 @@
66
67
it "can't create a target to a bad filename" do
68
expect {
69
- Vips::Target.new_to_file "/banana/monkey"
+ target = Vips::Target.new_to_file "/banana/monkey"
70
+ image = Vips::Image.black 1, 1
71
+ image.write_to_target(target, "")
72
}.to raise_exception(Vips::Error)
73
end
74
0 commit comments