Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
trshafer committed Feb 13, 2015
1 parent dbffc1f commit 437eb76
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/compiled-dev.js
Original file line number Diff line number Diff line change
Expand Up @@ -5379,7 +5379,7 @@ userOrDefault = function(userOptions, key) {
};

CineIOPeer = {
version: "0.0.5",
version: "0.0.6",
reset: function() {
return CineIOPeer.config = {
rooms: [],
Expand Down
2 changes: 1 addition & 1 deletion build/compiled-prod.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"domains": [
"cine.io"
],
"version": "0.0.5",
"version": "0.0.6",
"description": "peer client for cine.io",
"scripts": {
"test": "coffeelint src/ test/ && grunt test"
Expand Down
2 changes: 1 addition & 1 deletion src/main.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ userOrDefault = (userOptions, key)->
if Object.prototype.hasOwnProperty.call(userOptions, key) then userOptions[key] else defaultOptions[key]

CineIOPeer =
version: "0.0.5"
version: "0.0.6"
reset: ->
CineIOPeer.config = {rooms: [], videoElements: {}}

Expand Down
2 changes: 1 addition & 1 deletion test/main_test.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe 'CineIOPeer', ->

describe '.version', ->
it 'has a version', ->
expect(CineIOPeer.version).to.equal('0.0.5')
expect(CineIOPeer.version).to.equal('0.0.6')

describe '.reset', ->
it 'resets the config', ->
Expand Down

0 comments on commit 437eb76

Please sign in to comment.