Skip to content

Commit

Permalink
prepped for release
Browse files Browse the repository at this point in the history
[git-p4: depot-paths = "//src/ruby2ruby/dev/": change = 7683]
  • Loading branch information
zenspider committed Jul 28, 2012
1 parent ea2f7a6 commit 0151246
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 3 deletions.
23 changes: 23 additions & 0 deletions History.txt
@@ -1,3 +1,26 @@
=== 2.0.0.b1 / 2012-07-27

* 4 major enhancements:

* Made it work without arglist in call.
* Made it work without scope/block in class/module/defn/defs.
* Removed block from resbody
* Removed block from when node

* 4 minor enhancements:

* Added debug task to help isolate an error
* Empty hash is now a proper {}
* Refactored and added finish method.
* Switched to new Ruby18Parser to avoid deprecation warnings

* 4 bug fixes:

* Fixed call with empty hash arg. (neilconway)
* OMG WTF... removed long decrepit ParseTree dependency
* Removed isolate/rake require to reduce minimum bootstrap to hoe + rake + rake install_plugins (*2)
* Skip 1.9 tests for now.

=== 1.3.1 / 2011-09-22

* 1 minor enhancement:
Expand Down
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -15,8 +15,8 @@ Hoe.spec 'ruby2ruby' do

self.rubyforge_name = 'seattlerb'

dependency "sexp_processor", "~> 3.0"
dependency "ruby_parser", "~> 2.0"
dependency "sexp_processor", "~> 4.0"
dependency "ruby_parser", "~> 3.0.0.a4"
end

def process ruby, file="stdin"
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby2ruby.rb
Expand Up @@ -24,7 +24,7 @@ class Regexp
end

class Ruby2Ruby < SexpProcessor
VERSION = '1.3.1'
VERSION = '2.0.0.b1'
LINE_LENGTH = 78

BINARY = [:<=>, :==, :<, :>, :<=, :>=, :-, :+, :*, :/, :%, :<<, :>>, :**]
Expand Down

0 comments on commit 0151246

Please sign in to comment.