Skip to content

Commit

Permalink
Release 1.10.3, with the dependency on nokogiri relaxed to 1.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Empact committed Mar 4, 2013
1 parent 7fe2d59 commit 40ec53d
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 13 deletions.
11 changes: 5 additions & 6 deletions Gemfile.lock
@@ -1,8 +1,8 @@
PATH
remote: .
specs:
roo (1.10.2)
nokogiri (>= 1.5.5)
roo (1.10.3)
nokogiri (>= 1.4.0)
rubyzip (>= 0.9.9)
spreadsheet (> 0.6.4)

Expand All @@ -17,17 +17,16 @@ GEM
crack (0.3.1)
little-plugger (1.1.3)
loquacious (1.9.1)
nokogiri (1.5.5)
nokogiri (1.5.5-java)
nokogiri (1.5.6)
rake (0.9.2.2)
ruby-ole (1.2.11.5)
ruby-ole (1.2.11.6)
rubyzip (0.9.9)
shoulda (3.0.1)
shoulda-context (~> 1.0.0)
shoulda-matchers (~> 1.0.0)
shoulda-context (1.0.0)
shoulda-matchers (1.0.0)
spreadsheet (0.7.4)
spreadsheet (0.8.2)
ruby-ole (>= 1.0)
webmock (1.9.0)
addressable (>= 2.2.7)
Expand Down
9 changes: 9 additions & 0 deletions History.txt
@@ -1,3 +1,12 @@
== 1.10.3 2013-03-03

* 1 bugfix
* Support both nokogiri 1.5.5 and 1.5.6 (Karsten Richter) https://github.com/Empact/roo/pull/18

* 1 enhancement
* Relax our nokogiri dependency back to 1.4.0, as we have no particular reason
to require a newer version.

== 1.10.2 2013-02-03

* 2 bugfixes
Expand Down
2 changes: 1 addition & 1 deletion lib/roo.rb
@@ -1,6 +1,6 @@
module Roo

VERSION = '1.10.2'
VERSION = '1.10.3'

class Spreadsheet
class << self
Expand Down
12 changes: 6 additions & 6 deletions roo.gemspec
Expand Up @@ -2,11 +2,11 @@

Gem::Specification.new do |s|
s.name = "roo"
s.version = "1.10.2"
s.version = "1.10.3"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Thomas Preymesser", "Hugh McGowan", "Ben Woosley"]
s.date = "2012-11-05"
s.date = "2013-03-04"
s.description = "Roo can access the contents of various spreadsheet files. It can handle\n* Openoffice\n* Excel\n* Google spreadsheets\n* Excelx\n* Libreoffice\n* CSV"
s.email = "thopre@gmail.com"
s.executables = ["roo"]
Expand All @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.rdoc_options = ["--main", "README.txt"]
s.require_paths = ["lib"]
s.rubyforge_project = "roo"
s.rubygems_version = "1.8.23"
s.rubygems_version = "1.8.24"
s.summary = "Roo can access the contents of various spreadsheet files."
s.test_files = ["test/test_generic_spreadsheet.rb", "test/test_helper.rb", "test/test_roo.rb"]

Expand All @@ -25,18 +25,18 @@ Gem::Specification.new do |s|

if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<spreadsheet>, ["> 0.6.4"])
s.add_runtime_dependency(%q<nokogiri>, [">= 1.5.5"])
s.add_runtime_dependency(%q<nokogiri>, [">= 1.4.0"])
s.add_runtime_dependency(%q<rubyzip>, [">= 0.9.9"])
s.add_development_dependency(%q<bones>, [">= 3.8.0"])
else
s.add_dependency(%q<spreadsheet>, ["> 0.6.4"])
s.add_dependency(%q<nokogiri>, [">= 1.5.5"])
s.add_dependency(%q<nokogiri>, [">= 1.4.0"])
s.add_dependency(%q<rubyzip>, [">= 0.9.9"])
s.add_dependency(%q<bones>, [">= 3.8.0"])
end
else
s.add_dependency(%q<spreadsheet>, ["> 0.6.4"])
s.add_dependency(%q<nokogiri>, [">= 1.5.5"])
s.add_dependency(%q<nokogiri>, [">= 1.4.0"])
s.add_dependency(%q<rubyzip>, [">= 0.9.9"])
s.add_dependency(%q<bones>, [">= 3.8.0"])
end
Expand Down

0 comments on commit 40ec53d

Please sign in to comment.