Skip to content

Commit

Permalink
Update the Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
elia committed Sep 4, 2018
1 parent 0bcce30 commit 296930e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -92,6 +92,7 @@ Whitespace conventions:
### Removed

- The `node` CLI runner no longer supports passing extra node options via the `NODE_OPT` env var, instead Node.js natively supports the `NODE_OPTIONS` env var.
- The gem "hike" is no longer an external dependency and is now an internal dependency available as `Opal::Hike`


### Fixed
Expand All @@ -103,6 +104,9 @@ Whitespace conventions:
- Raise `ArgumentError` instead of `TypeError` from `Numeric#step` when step is not a number. (#1757)
- At run-time `LoadError` wasn't being raised even with `Opal.config.missing_require_severity;` set to `'error'`.
- Fixed `Kernel#public_methods` to return instance methods if the argument is set to false.
- Fixed an issue in `String#gsub` that made it start an infinite loop when used recursively. (#1879)


<!-- generated-content-beyond-this-comment -->


Expand Down
2 changes: 1 addition & 1 deletion tasks/releasing.rake
Expand Up @@ -37,7 +37,7 @@ task :changelog do

heading_and_unreleased = File.read(changelog_path).split(splitter, 2).first.strip

changelog_entries.unshift heading_and_unreleased+"\n"+splitter
changelog_entries.unshift heading_and_unreleased+"\n\n\n"+splitter
changelog_entries << nil # for the final newlines

File.write changelog_path, changelog_entries.join("\n\n\n\n\n")
Expand Down

0 comments on commit 296930e

Please sign in to comment.