Skip to content

Commit

Permalink
bumped gui version to 2.6.8 and daemon to 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
atiderko committed Oct 14, 2024
1 parent dedca58 commit 343834b
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bump-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def bump_version(package_path, version_part):
if json_updated:
# Get git log since the last version
log_since_last_release = get_git_log(current_version)
changelog_entry = f"## {new_version} - {datetime.now().strftime('%d.%m.%Y')}\n{log_since_last_release}\n\n"
changelog_entry = f"## {new_version} - {datetime.now().strftime('%d.%m.%Y')}\n\n{log_since_last_release}\n\n"

# Insert entry in the 3rd line of CHANGELOG.md
changelog_path = 'CHANGELOG.md'
Expand Down
4 changes: 2 additions & 2 deletions fkie_mas_daemon/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<?xml version='1.0' encoding='utf-8'?>
<package format="3">
<name>fkie_mas_daemon</name>
<version>3.1.2</version>
<version>3.1.3</version>
<description>A daemon node to manage ROS launch files and launch nodes from loaded files.</description>

<license>MIT</license>
Expand Down
5 changes: 5 additions & 0 deletions fkie_mas_gui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog

## 2.6.8 - 14.10.2024

fixed: computer name contains dash which is not allowed in node names, issue #3

## 2.6.7 - 11.10.2024

Added script to bump version of the gui and daemon
fkie_mas_daemon: fixed detection of nodelet manager for nodelets

Expand Down
4 changes: 2 additions & 2 deletions fkie_mas_gui/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 fkie_mas_gui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fkie-mas-gui",
"version": "2.6.7",
"version": "2.6.8",
"description": "GUI to manage running ROS components",
"license": "MIT",
"author": "Alexander Tiderko <alexander.tiderko@fkie.fraunhofer.de>",
Expand Down
2 changes: 1 addition & 1 deletion fkie_mas_gui/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<package format="3">
<name>fkie_mas_gui</name>
<version>2.6.7</version>
<version>2.6.8</version>
<description>
Graphical interface to manage the running and
configured ROS nodes on different hosts.
Expand Down
2 changes: 1 addition & 1 deletion fkie_mas_gui/src/renderer/context/SettingsContext.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const LOG_LEVEL_LIST = ["DEBUG", "INFO", "SUCCESS", "WARN", "ERROR"];
export const LAUNCH_FILE_EXTENSIONS = [".launch", "launch.xml", "launch.py", "launch.yaml", "launch.yml"];

export const DEFAULT_SETTINGS = {
MIN_VERSION_DAEMON: "3.1.2",
MIN_VERSION_DAEMON: "3.1.3",
fgColor: "#1a73e8",
bgColor: "#fafafa",
fgColorForDarkMode: "#B8E7FB",
Expand Down

0 comments on commit 343834b

Please sign in to comment.