Skip to content

Commit

Permalink
Version 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
winterbe committed Sep 20, 2015
1 parent fa21de7 commit 088bbc7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamjs",
"version": "1.6.2",
"version": "1.6.3",
"homepage": "https://github.com/winterbe/streamjs",
"authors": ["Benjamin Winterberg"],
"description": "Lazy Object Streaming Pipeline for JavaScript - inspired by the Java 8 Streams API",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "streamjs",
"version": "1.6.2",
"version": "1.6.3",
"description": "Lazy Object Streaming Pipeline for JavaScript - inspired by the Java 8 Streams API",
"homepage": "https://github.com/winterbe/streamjs",
"author": {
Expand Down
4 changes: 2 additions & 2 deletions stream-min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions stream.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Stream.js v1.6.2
* Stream.js v1.6.3
* https://github.com/winterbe/streamjs
* Copyright (c) 2014-2015 Benjamin Winterberg
* Stream.js may be freely distributed under the MIT license.
Expand All @@ -8,7 +8,7 @@
"use strict";

var root = (typeof global == 'object' && global) || this,
version = "1.6.2",
version = "1.6.3",
ctx = {},
nil = {};

Expand Down
2 changes: 1 addition & 1 deletion test/test-misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ QUnit.test("toString", function (assert) {
});

QUnit.test("version", function (assert) {
assert.equal(Stream.VERSION, "1.6.2");
assert.equal(Stream.VERSION, "1.6.3");
});

QUnit.test("noConflict", function (assert) {
Expand Down

0 comments on commit 088bbc7

Please sign in to comment.