Skip to content

Commit f671b94

Browse files
committed
1.4.1
1 parent 197b294 commit f671b94

File tree

6 files changed

+14
-10
lines changed

6 files changed

+14
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 3 deletions
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

Lines changed: 2 additions & 2 deletions
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.3.0'
2701+
REVISION : '1.4.1'
27022702
};
27032703

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

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-lock.json

Lines changed: 2 additions & 2 deletions
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://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

Lines changed: 1 addition & 1 deletion
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)