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: 6b7bc1e84ae1
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 691900cdfee2
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Jul 13, 2015

  1. 3
    Copy the full SHA
    95b193d View commit details
  2. Bump version & release 0.8.0.rc3

    elia committed Jul 13, 2015
    Copy the full SHA
    6ac86e1 View commit details

Commits on Jul 16, 2015

  1. Prepare for v0.8.0 release

    elia committed Jul 16, 2015
    Copy the full SHA
    e066f95 View commit details

Commits on Jul 23, 2015

  1. Merge branch '0-8-stable'

    elia committed Jul 23, 2015
    Copy the full SHA
    062d9c2 View commit details
  2. Copy the full SHA
    691900c View commit details
Showing with 16 additions and 4 deletions.
  1. +13 −1 CHANGELOG.md
  2. +1 −1 lib/opal/version.rb
  3. +2 −2 opal/corelib/variables.rb
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
## edge (upcoming 0.8.0)
## 0.9.0 (edge)

## 0.8.0 2015-07-16

* Update to Sprockets v3.0.

* Delegate dependency management directly to Sprockets (when used) making sourcemaps swift again.
This means code generated by sprockets will always need to be bootstrapped via `Opal.load` or `Opal.require`.
Luckily `Opal::Processor.load_asset_code(sprockets, name)` does just that in the right way.

* Enable operator inlining by default in the compiler.

* Fix `Promise#always`.

* Update to Sprockets v3.0.

2 changes: 1 addition & 1 deletion lib/opal/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Opal
# WHEN RELEASING:
# Remember to update RUBY_ENGINE_VERSION in opal/corelib/variables.rb too!
VERSION = '0.8.0.rc2'
VERSION = '0.9.0.dev'
end
4 changes: 2 additions & 2 deletions opal/corelib/variables.rb
Original file line number Diff line number Diff line change
@@ -20,8 +20,8 @@
RUBY_PLATFORM = 'opal'
RUBY_ENGINE = 'opal'
RUBY_VERSION = '2.1.5'
RUBY_ENGINE_VERSION = '0.8.0.rc2'
RUBY_RELEASE_DATE = '2015-07-04'
RUBY_ENGINE_VERSION = '0.9.0.dev'
RUBY_RELEASE_DATE = '2015-07-16'
RUBY_PATCHLEVEL = 0
RUBY_REVISION = 0
RUBY_COPYRIGHT = 'opal - Copyright (C) 2013-2015 Adam Beynon'