Skip to content

Commit

Permalink
Release v1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Mar 23, 2023
1 parent aa2219b commit a1a79a9
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 13 deletions.
18 changes: 16 additions & 2 deletions 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.2](https://github.com/opal/opal/compare/v1.7.1...v1.7.2) - 2023-01-20
## [1.7.3](https://github.com/opal/opal/compare/v1.7.2...v1.7.3) - 2023-03-23


<!--
Expand All @@ -26,9 +26,23 @@ Changes are grouped as follows:
### Removed
### Deprecated
### Performance
### Fixed
-->

### Fixed

- Disallow to define a singleton class for Number ([#2521](https://github.com/opal/opal/pull/2521))
- Fix eval with parser gem v3.2.1 ([#2526](https://github.com/opal/opal/pull/2526))
- Fix certain encoding issues when using Prefork ([#2527](https://github.com/opal/opal/pull/2527))
- Fix Chrome CDP interface connection ([#2528](https://github.com/opal/opal/pull/2528))
- Fix for Opal::Cache::FileCache.dir_writable? ([#2529](https://github.com/opal/opal/pull/2529))
- Fix Array#sample randomness ([#2530](https://github.com/opal/opal/pull/2530))




## [1.7.2](https://github.com/opal/opal/compare/v1.7.1...v1.7.2) - 2023-01-20


### Fixed

- Fix the `--debug-source-map` CLI option ([#2520](https://github.com/opal/opal/pull/2520))
Expand Down
9 changes: 1 addition & 8 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,6 @@
### Removed
### Deprecated
### Performance
-->

### Fixed
-->

- Disallow to define a singleton class for Number (#2521)
- Fix eval with parser gem v3.2.1 (#2526)
- Fix certain encoding issues when using Prefork (#2527)
- Fix Chrome CDP interface connection (#2528)
- Fix for Opal::Cache::FileCache.dir_writable? (#2529)
- Fix Array#sample randomness (#2530)
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.2'
VERSION = '1.7.3'
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.2'
::RUBY_RELEASE_DATE = '2023-01-20'
::RUBY_ENGINE_VERSION = '1.7.3'
::RUBY_RELEASE_DATE = '2023-03-23'
::RUBY_PATCHLEVEL = 0
::RUBY_REVISION = '0'
::RUBY_COPYRIGHT = 'opal - Copyright (C) 2011-2023 Adam Beynon and the Opal contributors'
Expand Down

0 comments on commit a1a79a9

Please sign in to comment.