Skip to content

Commit

Permalink
Release v1.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Sep 14, 2023
1 parent 869d038 commit 3c2076f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
16 changes: 15 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.3](https://github.com/opal/opal/compare/v1.7.2...v1.7.3) - 2023-03-23
## [1.7.4](https://github.com/opal/opal/compare/v1.7.3...v1.7.4) - 2023-09-14


<!--
Expand All @@ -28,6 +28,20 @@ Changes are grouped as follows:
### Performance
-->

### Fixed

- Use a Map instead of a POJO for the jsid_cache ([#2584](https://github.com/opal/opal/pull/2584))
- Lowercase response headers in `SimpleServer` for rack 3.0 compatibility ([#2578](https://github.com/opal/opal/pull/2578))
- Fix `switch` with Object-wrapped values ([#2542](https://github.com/opal/opal/pull/2542))
- Regexp.escape: Cast to String or drop exception ([#2552](https://github.com/opal/opal/pull/2552))
- Chrome runner fix: support code that contains `</script>` ([#2581](https://github.com/opal/opal/pull/2581))




## [1.7.3](https://github.com/opal/opal/compare/v1.7.2...v1.7.3) - 2023-03-23


### Fixed

- Disallow to define a singleton class for Number ([#2521](https://github.com/opal/opal/pull/2521))
Expand Down
8 changes: 1 addition & 7 deletions UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@
### Removed
### Deprecated
### Performance
-->

### Fixed
-->

- Use a Map instead of a POJO for the jsid_cache (#2584)
- Lowercase response headers in `SimpleServer` for rack 3.0 compatibility (#2578)
- Fix `switch` with Object-wrapped values (#2542)
- Regexp.escape: Cast to String or drop exception (#2552)
- Chrome runner fix: support code that contains `</script>` (#2581)
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.3'
VERSION = '1.7.4'
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.3'
::RUBY_RELEASE_DATE = '2023-03-23'
::RUBY_ENGINE_VERSION = '1.7.4'
::RUBY_RELEASE_DATE = '2023-09-14'
::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 3c2076f

Please sign in to comment.