opal 0.10.0.rc1 → 0.10.0.rc2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e2a873c45ca2ab2562848657e97a18d95d7891fe
4
- data.tar.gz: 21c65698f96153b278c4353b86d629277a0da384
3
+ metadata.gz: efe75eb88b3f7d58767522527d4af500973e1f14
4
+ data.tar.gz: a78f99088a2b56b305e27f97b415405b5e4bf3cb
5
5
  SHA512:
6
- metadata.gz: efb186e9bf8740c1576320ab79f3ee52a75fdaed4700e5e4bd802c3ecf535cdd181a081bdd792002c829f7618448e34caef000a32b1fb4b31ae47ce942875cb9
7
- data.tar.gz: de65d4412a33c2faf634be26390a48c598cfd1a413420929b01f5e46e8c34a85daa70fc03f1fb2552506b315a8f32479b89f19dcc5e1709874e26d57aec462c1
6
+ metadata.gz: 9cdf2ece6b3eaf88bb4704cc49db8c8cf3d2cc06f4e609365bf316becde8769eb52dfe4e06d68ecb08faabc5db51c2f93f06adfec209cee901581e9ed2b24303
7
+ data.tar.gz: c72519167eeca7eda52d339d3df9b8092ea885304f93d20a4a921f8c0b53cc774d0900e943b8deab4c14d571dac15eae25db5bb066d31f619296d97042aaddf3
data/CHANGELOG.md CHANGED
@@ -133,10 +133,33 @@ Whitespace conventions:
133
133
 
134
134
 
135
135
 
136
+ ## [0.9.4] - 2016-06-21
137
+
138
+
139
+ ### Fixed
140
+
141
+ - Rebuilt the gem with Rubygems 2.4.8 as building with 2.5.1+ would make the gem un-installable
142
+
143
+ - Removed all symlinks from `node_module` directories to avoid further issues building the gem
144
+
145
+
146
+
147
+
148
+ ## [0.9.3] - 2016-06-06
149
+
150
+
151
+ ### Fixed
152
+
153
+ - `Hash#initialize` now accepts JS `null` as well as `undefined`, restoring its 0.8 behavior
154
+
155
+
156
+
157
+
136
158
  ## [0.9.2] - 2016-01-10
137
159
 
138
160
 
139
161
  ### Fixed
162
+
140
163
  - Rebuilt the gem with Ruby 2.2 as building with 2.3 would make the gem un-installable
141
164
 
142
165
 
@@ -146,6 +169,7 @@ Whitespace conventions:
146
169
 
147
170
 
148
171
  ### Fixed
172
+
149
173
  - Backport rack2 compatibility (#1260)
150
174
  - Fixed issue with JS nil return paths being treated as true (#1274)
151
175
  - Fix using more than two `rescue` in sequence (#1269)
@@ -824,7 +848,9 @@ Whitespace conventions:
824
848
 
825
849
 
826
850
 
827
- [0.10.0]: https://github.com/opal/opal/compare/v0.9.2...HEAD
851
+ [0.10.0]: https://github.com/opal/opal/compare/v0.9.4...HEAD
852
+ [0.9.4]: https://github.com/opal/opal/compare/v0.9.3...v0.9.4
853
+ [0.9.3]: https://github.com/opal/opal/compare/v0.9.2...v0.9.3
828
854
  [0.9.2]: https://github.com/opal/opal/compare/v0.9.1...v0.9.2
829
855
  [0.9.1]: https://github.com/opal/opal/compare/v0.9.0...v0.9.1
830
856
  [0.9.0]: https://github.com/opal/opal/compare/v0.8.1...v0.9.0
data/lib/opal/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  module Opal
2
2
  # WHEN RELEASING:
3
3
  # Remember to update RUBY_ENGINE_VERSION in opal/corelib/constants.rb too!
4
- VERSION = '0.10.0.rc1'
4
+ VERSION = '0.10.0.rc2'
5
5
  end
@@ -1,8 +1,8 @@
1
1
  RUBY_PLATFORM = 'opal'
2
2
  RUBY_ENGINE = 'opal'
3
3
  RUBY_VERSION = '2.2.3'
4
- RUBY_ENGINE_VERSION = '0.10.0.rc1'
5
- RUBY_RELEASE_DATE = '2016-06-07'
4
+ RUBY_ENGINE_VERSION = '0.10.0.rc2'
5
+ RUBY_RELEASE_DATE = '2016-06-21'
6
6
  RUBY_PATCHLEVEL = 0
7
7
  RUBY_REVISION = 0
8
8
  RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2015 Adam Beynon'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0.rc1
4
+ version: 0.10.0.rc2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Beynon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-16 00:00:00.000000000 Z
11
+ date: 2016-06-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sourcemap
@@ -896,7 +896,6 @@ files:
896
896
  - stdlib/nodejs/io.rb
897
897
  - stdlib/nodejs/irb.rb
898
898
  - stdlib/nodejs/kernel.rb
899
- - stdlib/nodejs/node_modules/.bin/js-yaml
900
899
  - stdlib/nodejs/node_modules/glob/LICENSE
901
900
  - stdlib/nodejs/node_modules/glob/README.md
902
901
  - stdlib/nodejs/node_modules/glob/common.js
@@ -1018,8 +1017,6 @@ files:
1018
1017
  - stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/set.js
1019
1018
  - stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/str.js
1020
1019
  - stdlib/nodejs/node_modules/js-yaml/lib/js-yaml/type/timestamp.js
1021
- - stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esparse
1022
- - stdlib/nodejs/node_modules/js-yaml/node_modules/.bin/esvalidate
1023
1020
  - stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/HISTORY.md
1024
1021
  - stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/LICENSE
1025
1022
  - stdlib/nodejs/node_modules/js-yaml/node_modules/argparse/README.md
@@ -1 +0,0 @@
1
- ../js-yaml/bin/js-yaml.js
@@ -1 +0,0 @@
1
- ../esprima/bin/esparse.js
@@ -1 +0,0 @@
1
- ../esprima/bin/esvalidate.js