ruby-vips 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # master
2
2
 
3
+ # Version 0.3.3
4
+
5
+ * Typo in workaround in 0.3.2 [John Cupitt]
6
+
3
7
  # Version 0.3.2
4
8
 
5
9
  ### Fixed
data/ext/ruby_vips.c CHANGED
@@ -34,7 +34,7 @@ ruby_vips_class_map_all( GType type, VipsClassMap fn, void *a )
34
34
  }
35
35
 
36
36
  if( (result = vips_type_map( type,
37
- (VipsTypeMap2) vips_class_map_all, fn, a )) )
37
+ (VipsTypeMap2) ruby_vips_class_map_all, fn, a )) )
38
38
  return( result );
39
39
 
40
40
  return( NULL );
data/lib/vips/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module VIPS
2
- VERSION = "0.3.2"
2
+ VERSION = "0.3.3"
3
3
  end
data/ruby-vips.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = "ruby-vips"
8
- s.version = "0.3.2"
8
+ s.version = "0.3.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Timothy Elliott", "John Cupitt"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-vips
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 3
9
- - 2
10
- version: 0.3.2
9
+ - 3
10
+ version: 0.3.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Timothy Elliott