diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index c7a433dae..d50d143a9 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -9,6 +9,8 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni == https://github.com/robotframework/RIDE[Unreleased] === Added +- Added parsing of option *--name* or *-N* and *Name* setting, to allow running test suites with them set. + - Added indication of *private* keywords in Grid Editor, keywords will show in _Italic_, and with error background, when they are used outside of Keywords section, or from different files. diff --git a/src/robotide/application/CHANGELOG.html b/src/robotide/application/CHANGELOG.html index 0ad3afee5..43ce455f3 100644 --- a/src/robotide/application/CHANGELOG.html +++ b/src/robotide/application/CHANGELOG.html @@ -1,6 +1,8 @@ Changelog

Changelog


All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

1.1. Added

  • +Added parsing of option --name or -N and Name setting, to allow running test suites with them set. +
  • Added indication of private keywords in Grid Editor, keywords will show in Italic, and with error background, when they are used outside of Keywords section, or from different files.
  • diff --git a/src/robotide/application/releasenotes.py b/src/robotide/application/releasenotes.py index c592e567e..af0a41529 100644 --- a/src/robotide/application/releasenotes.py +++ b/src/robotide/application/releasenotes.py @@ -150,7 +150,7 @@ def set_content(self, html_win, content):

    RIDE (Robot Framework IDE) {VERSION} is a new release with some enhancements and bug fixes. The reference for valid arguments is - Robot Framework current version, 7.3.1. However, + Robot Framework current version, 7.3.2. However, internal library code is originally based on version 3.1.2, but adapted for new versions.

    • This version supports Python 3.8 up to 3.13 (and also tested on 3.14.a7 with wxPython 4.2.3).
    • @@ -172,6 +172,7 @@ def set_content(self, html_win, content):

    New Features and Fixes Highlights

      +
    • Added parsing of option --name or -N and Name setting, to allow running tests with them set.
    • Added indication of private keywords in Grid Editor, keywords will show in Italic, and with error background, when they are used outside of Keywords section, or from different files.
    • Added indication of private keywords in Details pop-up for keywords with tag robot:private or name starting @@ -255,7 +256,7 @@ def set_content(self, html_win, content):
      python -m robotide.postinstall -install

      or

      ride_postinstall.py -install
      -

      RIDE {VERSION} was released on 17/July/2025.

      +

      RIDE {VERSION} was released on 20/July/2025.