Skip to content

Commit

Permalink
Other: Updated changelog and dist files for 6.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dcodeIO committed Jan 19, 2017
1 parent 6877b33 commit ea3f3b4
Show file tree
Hide file tree
Showing 17 changed files with 36 additions and 27 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
# [6.5.2](https://github.com/dcodeIO/protobuf.js/releases/tag/6.5.2)

## Docs
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/8cff92fe3b7ddb1930371edb4937cd0db9216e52) Added coverage reporting<br />

## CLI
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/cbaaae99b4e39a859664df0e6d20f0491169f489) Added version scheme warning to everything CLI so that we don't need this overly explicit in README<br />

## Other
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/6877b3399f1a4c33568221bffb4e298b01b14439) Coverage progress, 100%<br />
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/711a9eb55cb796ec1e51af7d56ef2ebbd5903063) Coverage progress<br />
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/e7526283ee4dd82231235afefbfad6af54ba8970) Attempted to fix badges once and for all<br />
[:hash:](https://github.com/dcodeIO/protobuf.js/commit/5aa296c901c2b460ee3be4530ede394e2a45e0ea) Coverage progress<br />

# [6.5.1](https://github.com/dcodeIO/protobuf.js/releases/tag/6.5.1)

## CLI
Expand Down
7 changes: 3 additions & 4 deletions dist/noparse/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/noparse/protobuf.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/noparse/protobuf.min.js

Large diffs are not rendered by default.

Binary file modified dist/noparse/protobuf.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/noparse/protobuf.min.js.map

Large diffs are not rendered by default.

8 changes: 3 additions & 5 deletions dist/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/protobuf.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/protobuf.min.js

Large diffs are not rendered by default.

Binary file modified dist/protobuf.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/protobuf.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/runtime/protobuf.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions dist/runtime/protobuf.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified dist/runtime/protobuf.min.js.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "protobufjs",
"version": "6.5.1",
"version": "6.5.2",
"versionScheme": "~",
"description": "Protocol Buffers for JavaScript (& TypeScript).",
"author": "Daniel Wirtz <dcode+protobufjs@dcode.io>",
Expand Down
1 change: 0 additions & 1 deletion src/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ function parse(source, root, options) {
token;
/* istanbul ignore next */
do {
// istanbul ignore next is not working here
if ((token = next()) !== "\"" && token !== "'")
throw illegal(token);
values.push(next());
Expand Down
3 changes: 1 addition & 2 deletions src/root.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,10 +124,9 @@ RootPrototype.load = function load(filename, options, callback) {
}
} catch (err) {
finish(err);
return;
}
if (!sync && !queued)
finish(null, self);
finish(null, self); // only once anyway
}

// Fetches a single file
Expand Down

0 comments on commit ea3f3b4

Please sign in to comment.