Skip to content
This repository has been archived by the owner on Aug 18, 2018. It is now read-only.

Commit

Permalink
Prep for v1.2.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarnette committed Jan 25, 2010
1 parent eaa9ddb commit eea1e28
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@

/lib/johnson/spidermonkey/*.bundle
/lib/johnson/spidermonkey/*.so
/lib/johnson/*.bundle
/lib/johnson/*.so

/vendor/spidermonkey/*.OBJ

Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.rdoc
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
=== 1.2.0 / 2010-01-25

* Add an API for registering custom conversions.
* Subclass Runtime, don't delegate.
* Make builds a bit more robust, especially on Snow Leopard.
* Handle UTF-8 conversion better. Also, treat JS strings as UTF-16.
* Add small bits of API doco.
* Plug tons of root leaks.
* Make Function.prototype.apply handle Ruby arrays.
* Remove Rails EJS support, it was a joke to begin with.
* Whitespace, formatting, and organization cleanups.

=== 1.1.2 / 2009-07-29

* Cleaned up building / packaging. Gem installs work again!
Expand Down
2 changes: 1 addition & 1 deletion Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ lib/johnson.rb
lib/johnson/cli.rb
lib/johnson/cli/options.rb
lib/johnson/error.rb
lib/johnson/js/core.js
lib/johnson/js/cli.js
lib/johnson/js/core.js
lib/johnson/js/prelude.js
lib/johnson/nodes.rb
lib/johnson/nodes/binary_node.rb
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Hoe.spec "johnson" do
clean_globs << "ext/**/Makefile"
clean_globs << "ext/**/*.{o,so,bundle,a,log}"
clean_globs << "ext/spidermonkey/immutable_node.c"
clean_globs << "lib/johnson/spidermonkey.bundle"
clean_globs << "lib/johnson/**/*.{bundle,so}"
clean_globs << "tmp"
clean_globs << "vendor/spidermonkey/**/*.OBJ"

Expand Down
2 changes: 1 addition & 1 deletion lib/johnson.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
require "johnson/spidermonkey"

module Johnson
VERSION = "1.1.2"
VERSION = "1.2.0"

###
# Evaluate the given JavaScript +expression+ in a new runtime, after
Expand Down

0 comments on commit eea1e28

Please sign in to comment.