Skip to content

Commit 9ca78cf

Browse files
author
David Conner
committed
4.1.3
1 parent 8debe5a commit 9ca78cf

4 files changed

Lines changed: 14 additions & 3 deletions

File tree

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22
Changelog for package flexbe_webui
33
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
44

5+
4.1.3 (2026-05-11)
6+
------------------
7+
* Fix to work with flexbe_behaviors packages defined using ament_python
8+
* Align flake8 with ROS 2 defaults
9+
* Update for CI testing
10+
* Suppress A005 and B008 in flake8 config (intentional patterns)
11+
* Bind loop variable in closure
12+
* Remove redundant exception subtypes
13+
* Rename unused loop variables
14+
* Fix lightweight CI: correct smoke path, config, and triggers
15+
516
4.1.2 (2026-05-08)
617
------------------
718
* Add Fit View (``Ctrl+0``) to zoom the canvas to fit the full state machine

flexbe_webui/app/ui/ui_settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -597,7 +597,7 @@ UI.Settings = new (function() {
597597

598598
this.getVersion = function() {
599599
// FlexBE Behavior Engine API version
600-
return "4.1.2";
600+
return "4.1.3";
601601
}
602602

603603

package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>flexbe_webui</name>
5-
<version>4.1.2</version>
5+
<version>4.1.3</version>
66
<description>FlexBE Web-based User Interface</description>
77
<maintainer email="robotics@cnu.edu">David Conner</maintainer>
88
<license>Apache 2.0</license>

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def app_data_files(app_root):
2222

2323
setup(
2424
name=PACKAGE_NAME,
25-
version='4.1.2',
25+
version='4.1.3',
2626
packages=[
2727
PACKAGE_NAME,
2828
PACKAGE_NAME + '.io',

0 commit comments

Comments
 (0)