Skip to content

Commit b9c6d70

Browse files
author
Russell Toris
committed
0.10.0 build
1 parent e2e094b commit b9c6d70

File tree

6 files changed

+21
-5
lines changed

6 files changed

+21
-5
lines changed

AUTHORS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ Original Authors
99

1010
Contributors
1111
------------
12+
13+
* Graeme Yeates ([email protected])

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
2014-12-08 - **0.10.0**
2+
* Refactor Karma testing and build configuration [(megawac)](https://github.com/megawac/)
3+
* Remove testing invalid XML [(megawac)](https://github.com/megawac/)
4+
* Use the correct id when unsubbing a Topic [(megawac)](https://github.com/megawac/)
5+
* Simplify core/Topic [(megawac)](https://github.com/megawac/)
6+
* Make source files UMD compliant [(megawac)](https://github.com/megawac/)
7+
* Refactor tests to support node [(megawac)](https://github.com/megawac/)
8+
* Allow multiple subscriptions to a topic [(megawac)](https://github.com/megawac/)
9+
* Unsubscribe should not remove other topic's listeners [(megawac)](https://github.com/megawac/)
10+
* Alternative syntax for create Topics, Services, Params, etc [(megawac)](https://github.com/megawac/)
11+
* Fixed quaternion default value issue [Akin Sisbot]
12+
* TCP connections to ROS bridge for node [(megawac)](https://github.com/megawac/)
13+
114
2014-09-09 - **0.9.0**
215
* Add connection status indicator to roslibjs examples [(T045T)](https://github.com/T045T/)
316
* Add a bower.json to publish this as a Bower packagee [(Rayman)](https://github.com/Rayman/)

build/roslib.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ exports.implementation = document.implementation;
3737
*/
3838

3939
var ROSLIB = this.ROSLIB || {
40-
REVISION : '0.10.0-SNAPSHOT'
40+
REVISION : '0.10.0'
4141
};
4242

4343
var Ros = ROSLIB.Ros = require('./core/Ros');
@@ -81,6 +81,7 @@ require('object-assign')(ROSLIB, require('./urdf/UrdfTypes'));
8181
});
8282

8383
module.exports = ROSLIB;
84+
8485
},{"./actionlib/ActionClient":5,"./actionlib/Goal":6,"./actionlib/SimpleActionServer":7,"./core/Message":8,"./core/Param":9,"./core/Ros":10,"./core/Service":11,"./core/ServiceRequest":12,"./core/ServiceResponse":13,"./core/Topic":15,"./math/Pose":16,"./math/Quaternion":17,"./math/Transform":18,"./math/Vector3":19,"./tf/TFClient":20,"./urdf/UrdfBox":21,"./urdf/UrdfColor":22,"./urdf/UrdfCylinder":23,"./urdf/UrdfLink":24,"./urdf/UrdfMaterial":25,"./urdf/UrdfMesh":26,"./urdf/UrdfModel":27,"./urdf/UrdfSphere":28,"./urdf/UrdfTypes":29,"./urdf/UrdfVisual":30,"object-assign":1}],4:[function(require,module,exports){
8586
(function (global){
8687
global.ROSLIB = require('./RosLib');

build/roslib.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "roslib",
33
"homepage": "https://www.robotwebtools.org",
44
"description": "The standard ROS Javascript Library",
5-
"version": "0.9.1",
5+
"version": "0.10.0",
66
"license": "BSD",
77
"main": "./src/RosLibNode.js",
88
"browser": "./src/RosLib.js",

src/RosLib.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*/
44

55
var ROSLIB = this.ROSLIB || {
6-
REVISION : '0.10.0-SNAPSHOT'
6+
REVISION : '0.10.0'
77
};
88

99
var Ros = ROSLIB.Ros = require('./core/Ros');
@@ -46,4 +46,4 @@ require('object-assign')(ROSLIB, require('./urdf/UrdfTypes'));
4646
};
4747
});
4848

49-
module.exports = ROSLIB;
49+
module.exports = ROSLIB;

0 commit comments

Comments
 (0)