Skip to content

Commit 8954884

Browse files
mvollrathjihoonl
authored andcommitted

File tree

4 files changed

+14
-3
lines changed

4 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
## Change Log
22

3+
### 1.0.0 (2019/01/16 12:54 +00:00)
4+
- [#310](https://github.com/RobotWebTools/roslibjs/pull/310) Update and normalize EventEmitter2 dependency (#310) (@mvollrath)
5+
- [#306](https://github.com/RobotWebTools/roslibjs/pull/306) Don't allow unsupported compression types (#306) (@mvollrath)
6+
- [#304](https://github.com/RobotWebTools/roslibjs/pull/304) Prevent multiple web socket connections being opened. (#304) (@achim-k)
7+
- [#303](https://github.com/RobotWebTools/roslibjs/pull/303) Add support for CBOR encoding (#303) (@mvollrath)
8+
- [#294](https://github.com/RobotWebTools/roslibjs/pull/294) Feature/pose math methods (#294) (@achim-k)
9+
- [#293](https://github.com/RobotWebTools/roslibjs/pull/293) Add origin in urdf joint. (#293) (@achim-k)
10+
- [#286](https://github.com/RobotWebTools/roslibjs/pull/286) update shim files to use window instead of global (#286) (@jorgenfb)
11+
- [#282](https://github.com/RobotWebTools/roslibjs/pull/282) Add the type of service when executing 'call\_service' (#282) (@minggangw)
12+
- [#281](https://github.com/RobotWebTools/roslibjs/pull/281) add example for advertise\_service and fix documentation (#281) (@T045T)
13+
314
### 0.20.0 (2017/12/21 14:58 +00:00)
415
- [#277](https://github.com/RobotWebTools/roslibjs/pull/277) Use https instead of http in examples and links (#277) (@jihoonl)
516
- [#276](https://github.com/RobotWebTools/roslibjs/pull/276) change CDN link to the static.robotwebtools url (#276) (@minshallj)

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "roslib",
33
"description": "(BOWER IS DEPRECATING! Please use npm version of roslib). roslibjs is the core JavaScript library for interacting with ROS from the browser. It uses WebSockets to connect with rosbridge and provides publishing, subscribing, service calls, actionlib, TF, URDF parsing, and other essential ROS functionality. roslibjs is developed as part of the Robot Web Tools effort.",
4-
"version": "0.20.0",
4+
"version": "1.0.0",
55
"homepage": "https://github.com/RobotWebTools/roslibjs",
66
"authors": [
77
"Russell Toris<[email protected]>",

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.20.0",
5+
"version": "1.0.0",
66
"license": "BSD-2-Clause",
77
"main": "./src/RosLibNode.js",
88
"browser": {

src/RosLib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* If you use nodejs, this is the variable you get when you require('roslib')
1010
*/
1111
var ROSLIB = this.ROSLIB || {
12-
REVISION : '0.20.0'
12+
REVISION : '1.0.0'
1313
};
1414

1515
var assign = require('object-assign');

0 commit comments

Comments
 (0)