Skip to content

Commit 2096e8c

Browse files
committedApr 14, 2014
Bump version and update the CHANGELOG
1 parent cdb2b92 commit 2096e8c

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed
 

‎CHANGELOG.md

+15-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,18 @@
1-
## edge
1+
## 0.6.1 2014-04-15
2+
3+
* Updated RubySpecs to master and added `rubysl-*` specs. Thanks to Mike Owens (@mieko)
4+
5+
* Added `Kernel#require_remote(url)` in `opal-parser` that requires files with basic synchronous ajax
6+
GET requests. It is used to load `<scripts type="text/ruby" src="…url…">`.
7+
8+
* Various parsing fixes (Hash parsing, `def` returns method name, cleanup `core/util`, Enumerator fixes)
9+
10+
* Added `#native_reader`, `#native_writer` and `#native_accessor`as class methods
11+
donated by `include Native`
12+
13+
* Added specs for Sprockets' processors (both .js.rb and .opalerb), backported from `opal-rails`
14+
15+
* Set 2.1.1 as RUBY_VERSION
216

317
* Add `opal-build` command utility to easily build libraries to js
418

‎lib/opal/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Opal
2-
VERSION = '0.6.0'
2+
VERSION = '0.6.1'
33
end

‎opal/corelib/variables.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
RUBY_PLATFORM = 'opal'
2121
RUBY_ENGINE = 'opal'
22-
RUBY_VERSION = '2.0.0'
23-
RUBY_ENGINE_VERSION = '0.6.0'
24-
RUBY_RELEASE_DATE = '2014-03-05'
22+
RUBY_VERSION = '2.1.1'
23+
RUBY_ENGINE_VERSION = '0.6.1'
24+
RUBY_RELEASE_DATE = '2014-04-15'

0 commit comments

Comments
 (0)
Please sign in to comment.