17
0

- updated to version 3.0.4

* 1 bug fix:
 
   * RPStringScanner#lineno was still using byte offset, not char offset. (brynary)
 
 * 1 minor enhancement:
 
   * Improved error output on invalid char in expression.
 
 * 1 bug fix:
 
   * Fixed lexing of no-name ivars. (whitequark)
 
 52 down makes 99.9767% or 3.7σ. 130 files failed to parse out of 558k.
 
 * 4 minor enhancements:
 
   * Added RP_TIMEOUT env var to override default timeout of 10 seconds.
   * Minor optimization to RubyLexer#parse_number
   * Only output parseerror output to stderr if $DEBUG.
   * ruby_parse_extract_error modified to include 'it' blocks in its search.
 
 * 7 bug fixes:
 
   * 1.9: Fixed args in dot-call forms (eg f.(...)).
   * 1.9: Fixed lexing stabby lambda w/ do/end
   * Deal better with DOS files. Ugh.
   * Fix line number of production after heredoc.
   * Fixed RubyParser#process to reuse parser instances across calls.
   * Fixed line numbers for several productions.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:ruby:extensions/rubygem-ruby_parser?expand=0&rev=18
This commit is contained in:
Stephan Kulow
2012-11-27 20:01:47 +00:00
committed by Git OBS Bridge
parent 8d32611714
commit 79b449a226
4 changed files with 40 additions and 4 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Tue Nov 27 20:01:10 UTC 2012 - coolo@suse.com
- updated to version 3.0.4
* 1 bug fix:
* RPStringScanner#lineno was still using byte offset, not char offset. (brynary)
* 1 minor enhancement:
* Improved error output on invalid char in expression.
* 1 bug fix:
* Fixed lexing of no-name ivars. (whitequark)
52 down makes 99.9767% or 3.7σ. 130 files failed to parse out of 558k.
* 4 minor enhancements:
* Added RP_TIMEOUT env var to override default timeout of 10 seconds.
* Minor optimization to RubyLexer#parse_number
* Only output parseerror output to stderr if $DEBUG.
* ruby_parse_extract_error modified to include 'it' blocks in its search.
* 7 bug fixes:
* 1.9: Fixed args in dot-call forms (eg f.(...)).
* 1.9: Fixed lexing stabby lambda w/ do/end
* Deal better with DOS files. Ugh.
* Fix line number of production after heredoc.
* Fixed RubyParser#process to reuse parser instances across calls.
* Fixed line numbers for several productions.
* new_call sets line number to smallest line number of members.
-------------------------------------------------------------------
Sat Nov 3 10:03:40 UTC 2012 - coolo@suse.com