opal 1.7.0.rc1 → 1.7.0

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
  SHA256:
3
- metadata.gz: 38a2d4a4ed5e087f1bed29102d84f675f8afe1db295464f44b1d4aee52e6c633
4
- data.tar.gz: 290899e91ac1683024cf394ea8b66d64f4df70df7a1233723a9aac88002e6b73
3
+ metadata.gz: 96d55712831ec604d204ffbd2a92a5478daf36f7c24b8b58f52412fc7b2e2ca5
4
+ data.tar.gz: 557869c042954fc18a1d48cf93008485471e6e1db5a936b4834ffc9700fac755
5
5
  SHA512:
6
- metadata.gz: b13492436e25b705e65cde1a672f24cb668c9743992cc7d17f40d248a72a55cc9a8d9ade0a785d236972278217f89f54eb6362ca87411a026a4c41fd69c72c9b
7
- data.tar.gz: e7944265ce2f63fd094a624ec42738da5f098e55330da3ea4184b225411dc4c28fb00b792023b578edad3c45efc6e170b920330c7fed87a77bda53dd32219b7d
6
+ metadata.gz: 8747d6023e6e0e309f622c1f8ad879bd2c5ce2493662f2dc09053ab0cdbc268ad0110291a1b403c9d19272f6ceb2ebed6e15998b9673b6c5aff356898877202d
7
+ data.tar.gz: 83f23a7651fd6804759f9e22e284c37eaa27aa4dce2db0ee2d9da91bd1533acf853a9b18767787af267201a0e481736f5e5694ca29d5259ebb1bc67772ec62bc
data/CHANGELOG.md CHANGED
@@ -16,7 +16,7 @@ Changes are grouped as follows:
16
16
 
17
17
 
18
18
 
19
- ## [1.6.1](https://github.com/opal/opal/compare/v1.6.0...v1.6.1) - 2022-12-09
19
+ ## [1.7.0](https://github.com/opal/opal/compare/v1.6.1...v1.7.0) - 2022-12-26
20
20
 
21
21
 
22
22
  <!--
@@ -29,6 +29,40 @@ Changes are grouped as follows:
29
29
  ### Fixed
30
30
  -->
31
31
 
32
+ ### Added
33
+
34
+ - Update benchmarking and CLI runners, added support for Deno and Firefox (#2490, #2492, #2494, #2495, #2497, #2491, #2496)
35
+ - Ruby 3.2 support branch ([#2500](https://github.com/opal/opal/pull/2500))
36
+ - `Set` now part of the corelib
37
+ - Anonymous rest keyword and block arguments can be passed to calls: `call(**, &)`
38
+ - `Refinement#refined_class` has been added
39
+ - `Module#refinements` has been added
40
+ - `Module#const_added` has been added
41
+ - `Proc#parameters` now accepts lambda keyword
42
+ - `Class#attached_object` has been added, inverse of `singleton_class`
43
+ - `Hash#shift` now returns `nil` instead of passing `nil` to the `default_proc`
44
+ - Added `--watch` and `--output` options to the CLI for live compilation ([#2485](https://github.com/opal/opal/pull/2485))
45
+
46
+ ### Performance
47
+
48
+ - Replace all occurences of `'$'+name` with a cached helper, saving about 2% in performance ([#2481](https://github.com/opal/opal/pull/2481))
49
+ - Optimize argument passing and arity checks ([#2499](https://github.com/opal/opal/pull/2499))
50
+ - Targeted patches for Opal-Parser, saves up to 12% during compilation ([#2482](https://github.com/opal/opal/pull/2482))
51
+
52
+ ### Internal
53
+
54
+ - MSpec & Ruby Spec update ([#2486](https://github.com/opal/opal/pull/2486))
55
+
56
+ ### Fixed
57
+
58
+ - Remove throws from runtime ([#2484](https://github.com/opal/opal/pull/2484))
59
+
60
+
61
+
62
+
63
+ ## [1.6.1](https://github.com/opal/opal/compare/v1.6.0...v1.6.1) - 2022-12-09
64
+
65
+
32
66
  ### Fixed
33
67
 
34
68
  - Fix builder.dup breaking Tilt support ([#2479](https://github.com/opal/opal/pull/2479))
data/UNRELEASED.md CHANGED
@@ -7,31 +7,3 @@
7
7
  ### Performance
8
8
  ### Fixed
9
9
  -->
10
-
11
- ### Added
12
-
13
- - Update benchmarking and CLI runners, added support for Deno and Firefox (#2490, #2492, #2494, #2495, #2497, #2491, #2496)
14
- - Ruby 3.2 support branch (#2500)
15
- - `Set` now part of the corelib
16
- - Anonymous rest keyword and block arguments can be passed to calls: `call(**, &)`
17
- - `Refinement#refined_class` has been added
18
- - `Module#refinements` has been added
19
- - `Module#const_added` has been added
20
- - `Proc#parameters` now accepts lambda keyword
21
- - `Class#attached_object` has been added, inverse of `singleton_class`
22
- - `Hash#shift` now returns `nil` instead of passing `nil` to the `default_proc`
23
- - Added `--watch` and `--output` options to the CLI for live compilation (#2485)
24
-
25
- ### Performance
26
-
27
- - Replace all occurences of `'$'+name` with a cached helper, saving about 2% in performance (#2481)
28
- - Optimize argument passing and arity checks (#2499)
29
- - Targeted patches for Opal-Parser, saves up to 12% during compilation (#2482)
30
-
31
- ### Internal
32
-
33
- - MSpec & Ruby Spec update (#2486)
34
-
35
- ### Fixed
36
-
37
- - Remove throws from runtime (#2484)
data/lib/opal/version.rb CHANGED
@@ -3,5 +3,5 @@
3
3
  module Opal
4
4
  # WHEN RELEASING:
5
5
  # Remember to update RUBY_ENGINE_VERSION in opal/corelib/constants.rb too!
6
- VERSION = '1.7.0.rc1'
6
+ VERSION = '1.7.0'
7
7
  end
@@ -1,8 +1,8 @@
1
1
  ::RUBY_PLATFORM = 'opal'
2
2
  ::RUBY_ENGINE = 'opal'
3
3
  ::RUBY_VERSION = '3.2.0'
4
- ::RUBY_ENGINE_VERSION = '1.7.0.rc1'
5
- ::RUBY_RELEASE_DATE = '2022-12-22'
4
+ ::RUBY_ENGINE_VERSION = '1.7.0'
5
+ ::RUBY_RELEASE_DATE = '2022-12-26'
6
6
  ::RUBY_PATCHLEVEL = 0
7
7
  ::RUBY_REVISION = '0'
8
8
  ::RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2022 Adam Beynon and the Opal contributors'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opal
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.0.rc1
4
+ version: 1.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elia Schito
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-12-22 00:00:00.000000000 Z
13
+ date: 2022-12-26 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ast
@@ -1193,10 +1193,10 @@ licenses:
1193
1193
  metadata:
1194
1194
  homepage_uri: https://opalrb.com/
1195
1195
  bug_tracker_uri: https://github.com/opal/opal/issues
1196
- changelog_uri: https://github.com/opal/opal/blob/v1.7.0.rc1/CHANGELOG.md
1197
- readme_uri: https://github.com/opal/opal/blob/v1.7.0.rc1/README.md
1198
- api_documentation_uri: http://opalrb.com/docs/api/v1.7.0.rc1/index.html
1199
- guides_uri: http://opalrb.com/docs/guides/v1.7.0.rc1/index.html
1196
+ changelog_uri: https://github.com/opal/opal/blob/v1.7.0/CHANGELOG.md
1197
+ readme_uri: https://github.com/opal/opal/blob/v1.7.0/README.md
1198
+ api_documentation_uri: http://opalrb.com/docs/api/v1.7.0/index.html
1199
+ guides_uri: http://opalrb.com/docs/guides/v1.7.0/index.html
1200
1200
  chat_uri: https://gitter.im/opal/opal
1201
1201
  source_code_uri: https://github.com/opal/opal
1202
1202
  post_install_message:
@@ -1210,9 +1210,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
1210
1210
  version: '2.3'
1211
1211
  required_rubygems_version: !ruby/object:Gem::Requirement
1212
1212
  requirements:
1213
- - - ">"
1213
+ - - ">="
1214
1214
  - !ruby/object:Gem::Version
1215
- version: 1.3.1
1215
+ version: '0'
1216
1216
  requirements: []
1217
1217
  rubygems_version: 3.3.26
1218
1218
  signing_key: