From 7caeebff1ffde7d504f55f8aee813ce9a1b5df5c Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Fri, 13 Nov 2009 12:36:25 -0500 Subject: [PATCH] release early, release often --- History.txt | 4 ++-- Manifest.txt | 1 + lib/rhino.rb | 2 +- therubyrhino.gemspec | 4 ++-- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/History.txt b/History.txt index ca02413..99485af 100644 --- a/History.txt +++ b/History.txt @@ -1,5 +1,5 @@ -=== 1.72.5 2009-XX-XX -* N major enhancements: +=== 1.72.5 2009-11-12 +* 2 major enhancements: * evaluate javascript with a ruby object as it's scope using Context#open(:with => object) * add eval_js() method to Object to evaluate in the context of that object diff --git a/Manifest.txt b/Manifest.txt index 9e32995..e0ddcfc 100644 --- a/Manifest.txt +++ b/Manifest.txt @@ -7,6 +7,7 @@ lib/rhino/context.rb lib/rhino/java.rb lib/rhino/native_function.rb lib/rhino/native_object.rb +lib/rhino/object.rb lib/rhino/rhino-1.7R2.jar lib/rhino/ruby_function.rb lib/rhino/ruby_object.rb diff --git a/lib/rhino.rb b/lib/rhino.rb index 2861d1a..62b12b5 100644 --- a/lib/rhino.rb +++ b/lib/rhino.rb @@ -3,7 +3,7 @@ $:.unshift(File.dirname(__FILE__)) unless module Rhino - VERSION = '1.72.4' + VERSION = '1.72.5' require 'rhino/java' require 'rhino/object' require 'rhino/context' diff --git a/therubyrhino.gemspec b/therubyrhino.gemspec index 57100e8..0a7c20f 100644 --- a/therubyrhino.gemspec +++ b/therubyrhino.gemspec @@ -2,12 +2,12 @@ Gem::Specification.new do |s| s.name = %q{therubyrhino} - s.version = "1.72.4" + s.version = "1.72.5" s.platform = %q{jruby} s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Charles Lowell"] - s.date = %q{2009-11-11} + s.date = %q{2009-11-13} s.description = %q{Embed the Mozilla Rhino Javascript interpreter into Ruby} s.email = ["cowboyd@thefrontside.net"] s.extra_rdoc_files = ["History.txt", "Manifest.txt"]