Skip to content

Commit

Permalink
1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh committed Dec 4, 2023
1 parent 426fa4a commit d81d899
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

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

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

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

## [1.4.0](https://github.com/robotwebtools/roslibjs/tree/1.4.0) (2023-12-04 21:03 +0000)

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

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



\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
4 changes: 2 additions & 2 deletions build/roslib.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ else if (!global.CBOR)
var obj = {};
var key;
var len = keys.length;
var valuesCount = values ? value.length : 0;
var valuesCount = values ? values.length : 0;
for (var i = 0; i < len; i++) {
key = keys[i];
obj[key] = i < valuesCount ? values[i] : undefined;
Expand Down Expand Up @@ -2698,7 +2698,7 @@ var ROSLIB = this.ROSLIB || {
* @default
* @description Library version
*/
REVISION : '1.4.0'
REVISION : '1.4.1'
};

var assign = require('object-assign');
Expand Down
2 changes: 1 addition & 1 deletion build/roslib.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "roslib",
"homepage": "https://robotwebtools.github.io",
"description": "The standard ROS Javascript Library",
"version": "1.4.0",
"version": "1.4.1",
"license": "BSD-2-Clause",
"main": "./src/RosLibNode.js",
"browser": {
Expand Down
2 changes: 1 addition & 1 deletion src/RosLib.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ var ROSLIB = this.ROSLIB || {
* @default
* @description Library version
*/
REVISION : '1.4.0'
REVISION : '1.4.1'
};

var assign = require('object-assign');
Expand Down

0 comments on commit d81d899

Please sign in to comment.