Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update build to release 0.20.0 #279

Merged
merged 1 commit into from
Jan 4, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build/roslib.js
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,7 @@ module.exports = shouldUseNative() ? Object.assign : function (target, source) {
* If you use nodejs, this is the variable you get when you require('roslib')
*/
var ROSLIB = this.ROSLIB || {
REVISION : '0.19.0-SNAPSHOT'
REVISION : '0.20.0'
};

var assign = require('object-assign');
Expand Down Expand Up @@ -2419,6 +2419,7 @@ var Message = require('./Message');
* * queue_size - the queue created at bridge side for re-publishing webtopics (defaults to 100)
* * latch - latch the topic when publishing
* * queue_length - the queue length at bridge side used when subscribing (defaults to 0, no queueing).
* * reconnect_on_close - the flag to enable resubscription and readvertisement on close event(defaults to true).
*/
function Topic(options) {
options = options || {};
Expand Down
Loading