Skip to content

Commit

Permalink
Bump and build 0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ahumphreys87 committed Jun 17, 2015
1 parent 823fc77 commit f3d6e63
Show file tree
Hide file tree
Showing 7 changed files with 182 additions and 163 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
### [0.9.1](https://github.com/jmeas/backbone.radio/releases/tag/v0.8.2)

- **Refactor**: Structure and build using babel-boilerplate
- Update Underscore and Backbone dependencies to 1.8.3 and 1.2.1 respectively to match Marionette.

### [0.9.0](https://github.com/jmeas/backbone.radio/releases/tag/v0.9.0)

- **Breaking change**: Space-separated requests no longer return an Array. Instead, an Object is returned.
```js
// old
myChannel.request('thingOne thingTwo');
// => [replyOne, replyTwo]

// new
myChannel.request('thingOne thingTwo');
// => { thingOne: replyOne, thingTwo: replyTwo }
```

- **New feature**: `Radio.reset()` is now a top-level API method that can be used to reset a channel, or all channels. Do note that channels continue to have their own `reset` method.
- **New feature**: `Radio.debugLog()` is now exposed...go forth and customize how Radio logs potential errors!

### [0.8.2](https://github.com/jmeas/backbone.radio/releases/tag/v0.8.2)

- **Refactor**: A small refactor to support Underscore 1.4.4 (the lowest version that Marionette supports)
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backbone.radio",
"version": "0.9.0",
"version": "0.9.1",
"homepage": "https://github.com/marionettejs/backbone.radio",
"authors": [
"Jmeas <jellyes2@gmail.com>"
Expand Down
Loading

0 comments on commit f3d6e63

Please sign in to comment.