From dab6eda397b98c2330ef43a84513ed7471c9c0dc Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Wed, 16 Jun 2010 22:50:31 +0300 Subject: [PATCH] 0.7.4: patch release for rvm rubies --- History.txt | 4 ++++ Rakefile | 2 +- lib/v8.rb | 2 +- therubyracer.gemspec | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/History.txt b/History.txt index 5e65780..afc5a06 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,7 @@ +=== 0.7.4 2010-06-15 +* 1 minor enhancement + * bug fix for rvm ruby installs incorrectly detected as 32bit + === 0.7.3 2010-06-15 * 2 minor enhancements * don't catch SystemExit and NoMemoryError diff --git a/Rakefile b/Rakefile index 9059cbb..395ad23 100644 --- a/Rakefile +++ b/Rakefile @@ -7,7 +7,7 @@ manifest.exclude "lib/v8/*.bundle", "lib/v8/*.so", "ext/**/test/*", "ext/**/test Gem::Specification.new do |gemspec| $gemspec = gemspec gemspec.name = gemspec.rubyforge_project = "therubyracer" - gemspec.version = "0.7.3" + gemspec.version = "0.7.4" gemspec.summary = "Embed the V8 Javascript interpreter into Ruby" gemspec.description = "Call javascript code and manipulate javascript objects from ruby. Call ruby code and manipulate ruby objects from javascript." gemspec.email = "cowboyd@thefrontside.net" diff --git a/lib/v8.rb b/lib/v8.rb index aaef4f7..a1541a2 100644 --- a/lib/v8.rb +++ b/lib/v8.rb @@ -2,7 +2,7 @@ $:.unshift(File.dirname(__FILE__)) unless $:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__))) module V8 - VERSION = '0.7.3' + VERSION = '0.7.4' require 'v8/v8' #native glue require 'v8/to' require 'v8/context' diff --git a/therubyracer.gemspec b/therubyracer.gemspec index e9339ed..9a76053 100644 --- a/therubyracer.gemspec +++ b/therubyracer.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = %q{therubyracer} - s.version = "0.7.3" + s.version = "0.7.4" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Charles Lowell", "Bill Robertson"]