Skip to content

Commit

Permalink
Release v1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Nov 9, 2023
1 parent aa9f83c commit b13f318
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 18 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,38 @@ Changes are grouped as follows:



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


<!--
### Internal
### Changed
### Added
### Removed
### Deprecated
### Performance
### Fixed
-->


### Fixed

- `Array` methods should handle elements inserted during the iteration ([#2602](https://github.com/opal/opal/pull/2602))
- Assign correct values to duplicated underscore parameters ([#2606](https://github.com/opal/opal/pull/2606))


### Added

- Support an `IO` argument of `Kernel.printf` ([#2605](https://github.com/opal/opal/pull/2605))


### Performance

- Fix a performance regression introduced by freezing support ([#2609](https://github.com/opal/opal/pull/2609))




## [1.8.0](https://github.com/opal/opal/compare/v1.7.4...v1.8.0) - 2023-10-26


Expand Down
15 changes: 0 additions & 15 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,3 @@
### Fixed
-->


### Fixed

- `Array` methods should handle elements inserted during the iteration (#2602)
- Assign correct values to duplicated underscore parameters (#2606)


### Added

- Support an `IO` argument of `Kernel.printf` (#2605)


### Performance

- Fix a performance regression introduced by freezing support (#2609)
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.0'
VERSION = '1.8.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.8.0'
::RUBY_RELEASE_DATE = '2023-10-26'
::RUBY_ENGINE_VERSION = '1.8.1'
::RUBY_RELEASE_DATE = '2023-11-09'
::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 b13f318

Please sign in to comment.