Skip to content

Commit

Permalink
Release v1.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Nov 23, 2023
1 parent c4405de commit 0908976
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 12 deletions.
16 changes: 14 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.8.1](https://github.com/opal/opal/compare/v1.8.0...v1.8.1) - 2023-11-09
## [1.8.2](https://github.com/opal/opal/compare/v1.8.1...v1.8.2) - 2023-11-23


<!--
Expand All @@ -25,9 +25,21 @@ Changes are grouped as follows:
### Added
### Removed
### Deprecated
-->

### Performance

- Optimize `Hash#rehash` for the common case, avoid calling `$slice` when no hash collision is present ([#2571](https://github.com/opal/opal/pull/2571))

### Fixed
-->

- `String#{r,l,}strip`: Make them work like in MRI for non-breaking white-space ([#2612](https://github.com/opal/opal/pull/2612))
- Compat regression fix: `Hash#to_n` should return a JS object ([#2613](https://github.com/opal/opal/pull/2613))




## [1.8.1](https://github.com/opal/opal/compare/v1.8.0...v1.8.1) - 2023-11-09


### Fixed
Expand Down
8 changes: 1 addition & 7 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,7 @@
### Added
### Removed
### Deprecated
-->

### Performance

- Optimize `Hash#rehash` for the common case, avoid calling `$slice` when no hash collision is present (#2571)

### Fixed
-->

- `String#{r,l,}strip`: Make them work like in MRI for non-breaking white-space (#2612)
- Compat regression fix: `Hash#to_n` should return a JS object (#2613)
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.8.1'
VERSION = '1.8.2'
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.8.1'
::RUBY_RELEASE_DATE = '2023-11-09'
::RUBY_ENGINE_VERSION = '1.8.2'
::RUBY_RELEASE_DATE = '2023-11-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 0908976

Please sign in to comment.