Skip to content

Commit d81d899

Browse files
committed
1.4.1
1 parent 426fa4a commit d81d899

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
## [Unreleased](https://github.com/robotwebtools/roslibjs/tree/HEAD)
44

5-
[Full Changelog](https://github.com/robotwebtools/roslibjs/compare/1.3.0...HEAD)
5+
## [1.4.0](https://github.com/robotwebtools/roslibjs/tree/1.4.1) (2023-12-04 21:11 +0000)
66

7-
## [1.4.0](https://github.com/robotwebtools/roslibjs/tree/1.4.0) (2023-12-04 20:56 +0000)
7+
[Full Changelog](https://github.com/robotwebtools/roslibjs/compare/1.4.0...1.4.1)
8+
9+
## [1.4.0](https://github.com/robotwebtools/roslibjs/tree/1.4.0) (2023-12-04 21:03 +0000)
810

911
[Full Changelog](https://github.com/robotwebtools/roslibjs/compare/1.3.0...1.4.0)
1012

@@ -131,7 +133,7 @@
131133
- \(actions\) fix auto build [\#505](https://github.com/RobotWebTools/roslibjs/pull/505) (@MatthijsBurgh)
132134
- Bump ws from 8.3.0 to 8.4.0 [\#503](https://github.com/RobotWebTools/roslibjs/pull/503) (@dependabot[bot])
133135
- Bump @xmldom/xmldom from 0.7.5 to 0.8.0 [\#502](https://github.com/RobotWebTools/roslibjs/pull/502) (@dependabot[bot])
134-
- Migrate to @xmldom/xmldom \(<https://github.com/xmldom/xmldom/issues/271\>) [\#499](https://github.com/RobotWebTools/roslibjs/pull/499) (@MatthijsBurgh)
136+
- Migrate to @xmldom/xmldom \(https://github.com/xmldom/xmldom/issues/271\) [\#499](https://github.com/RobotWebTools/roslibjs/pull/499) (@MatthijsBurgh)
135137
- Bump ws from 8.2.3 to 8.3.0 [\#496](https://github.com/RobotWebTools/roslibjs/pull/496) (@dependabot[bot])
136138
- Bump socket.io from 4.3.2 to 4.4.0 [\#495](https://github.com/RobotWebTools/roslibjs/pull/495) (@dependabot[bot])
137139
- Bump karma from 6.3.8 to 6.3.9 [\#494](https://github.com/RobotWebTools/roslibjs/pull/494) (@dependabot[bot])
@@ -506,4 +508,6 @@
506508
- first pass of core module [\#5](https://github.com/RobotWebTools/roslibjs/pull/5) (@rctoris)
507509
- current developement versions of existing libraries added [\#1](https://github.com/RobotWebTools/roslibjs/pull/1) (@rctoris)
508510

511+
512+
509513
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*

build/roslib.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ else if (!global.CBOR)
509509
var obj = {};
510510
var key;
511511
var len = keys.length;
512-
var valuesCount = values ? value.length : 0;
512+
var valuesCount = values ? values.length : 0;
513513
for (var i = 0; i < len; i++) {
514514
key = keys[i];
515515
obj[key] = i < valuesCount ? values[i] : undefined;
@@ -2698,7 +2698,7 @@ var ROSLIB = this.ROSLIB || {
26982698
* @default
26992699
* @description Library version
27002700
*/
2701-
REVISION : '1.4.0'
2701+
REVISION : '1.4.1'
27022702
};
27032703

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

build/roslib.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "roslib",
33
"homepage": "https://robotwebtools.github.io",
44
"description": "The standard ROS Javascript Library",
5-
"version": "1.4.0",
5+
"version": "1.4.1",
66
"license": "BSD-2-Clause",
77
"main": "./src/RosLibNode.js",
88
"browser": {

src/RosLib.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var ROSLIB = this.ROSLIB || {
1313
* @default
1414
* @description Library version
1515
*/
16-
REVISION : '1.4.0'
16+
REVISION : '1.4.1'
1717
};
1818

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

0 commit comments

Comments
 (0)