Skip to content

Commit

Permalink
Release v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Jan 5, 2023
1 parent ad3b8fb commit d2296fd
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 26 deletions.
30 changes: 29 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Changes are grouped as follows:



## [1.7.0](https://github.com/opal/opal/compare/v1.6.1...v1.7.0) - 2022-12-26
## [1.7.1](https://github.com/opal/opal/compare/v1.7.0...v1.7.1) - 2023-01-06


<!--
Expand All @@ -29,6 +29,34 @@ Changes are grouped as follows:
### Fixed
-->


### Added

- Add safari runner ([#2513](https://github.com/opal/opal/pull/2513))

### Fixed

- Fix CLI file reading for macOS ([#2510](https://github.com/opal/opal/pull/2510))
- Make Date/Time.parse on Firefox more compatible with Chrome and Ruby ([#2506](https://github.com/opal/opal/pull/2506))
- Safari/WebKit can now parse code compiled with lookbehind regexps, failing at runtime instead ([#2511](https://github.com/opal/opal/pull/2511))
- Fix `--watch` ignoring some directories (e.g. `tmp`) ([#2509](https://github.com/opal/opal/pull/2509))
- Fix rake dist not generating libraries correctly for the CDN ([#2515](https://github.com/opal/opal/pull/2515))
- Prefork: output processed files in a correct, deterministic order ([#2516](https://github.com/opal/opal/pull/2516))
- Fix the handling of ARGV for the opal executable ([#2518](https://github.com/opal/opal/pull/2518))

### Internal

- Platform specific spec filters ([#2508](https://github.com/opal/opal/pull/2508))
- Run Firefox specs by default ([#2507](https://github.com/opal/opal/pull/2507))
- Run Safari specs by default ([#2513](https://github.com/opal/opal/pull/2513))
- [mspec_opal] Avoid lookbehind Regexp for compatibility with various javascript engines ([#2512](https://github.com/opal/opal/pull/2512))




## [1.7.0](https://github.com/opal/opal/compare/v1.6.1...v1.7.0) - 2022-12-26


### Added

- Update benchmarking and CLI runners, added support for Deno and Firefox (#2490, #2492, #2494, #2495, #2497, #2491, #2496)
Expand Down
22 changes: 0 additions & 22 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,3 @@
### Performance
### Fixed
-->


### Added

- Add safari runner (#2513)

### Fixed

- Fix CLI file reading for macOS (#2510)
- Make Date/Time.parse on Firefox more compatible with Chrome and Ruby (#2506)
- Safari/WebKit can now parse code compiled with lookbehind regexps, failing at runtime instead (#2511)
- Fix `--watch` ignoring some directories (e.g. `tmp`) (#2509)
- Fix rake dist not generating libraries correctly for the CDN (#2515)
- Prefork: output processed files in a correct, deterministic order (#2516)
- Fix the handling of ARGV for the opal executable (#2518)

### Internal

- Platform specific spec filters (#2508)
- Run Firefox specs by default (#2507)
- Run Safari specs by default (#2513)
- [mspec_opal] Avoid lookbehind Regexp for compatibility with various javascript engines (#2512)
2 changes: 1 addition & 1 deletion lib/opal/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
module Opal
# WHEN RELEASING:
# Remember to update RUBY_ENGINE_VERSION in opal/corelib/constants.rb too!
VERSION = '1.7.0'
VERSION = '1.7.1'
end
4 changes: 2 additions & 2 deletions opal/corelib/constants.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
::RUBY_PLATFORM = 'opal'
::RUBY_ENGINE = 'opal'
::RUBY_VERSION = '3.2.0'
::RUBY_ENGINE_VERSION = '1.7.0'
::RUBY_RELEASE_DATE = '2022-12-26'
::RUBY_ENGINE_VERSION = '1.7.1'
::RUBY_RELEASE_DATE = '2023-01-06'
::RUBY_PATCHLEVEL = 0
::RUBY_REVISION = '0'
::RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2022 Adam Beynon and the Opal contributors'
Expand Down

0 comments on commit d2296fd

Please sign in to comment.