Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e0b8997a1695
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fd9790e8093e
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Nov 27, 2014

  1. Copy the full SHA
    db3686a View commit details
  2. Verified

    This commit was signed with the committer’s verified signature.
    infinisil Silvan Mosberger
    Copy the full SHA
    fd9790e View commit details
Showing with 7 additions and 1 deletion.
  1. +6 −0 CHANGELOG.md
  2. +1 −1 lib/opal/version.rb
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
## edge (upcoming 0.7)

* Improved support for recursive `Hash` for both `#inspect` and `#hash`.

* Optimized `Hash` implementation for `String` and `Symbol`, they have a separate hash-table in which they're used as both keys and hashes.

* Added real `#hash` / `eql?` support, previously was relying on `.toString()`.

* `String#to_proc` now uses `__send__` instead of `send` for calling
methods on receivers.

2 changes: 1 addition & 1 deletion lib/opal/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Opal
VERSION = '0.7.0.beta3'
VERSION = '0.7.0.beta4'
end