Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Libraries for Java 32.0.1-jre API. For more information, see documentation here:

This package includes supporting Inductive Automation's classes and interfaces.
For more information, see documentation here:
<https://sdk.inductiveautomation.com/javadoc/ignition81/8.1.54/index.html>.
<https://sdk.inductiveautomation.com/javadoc/ignition81/8.1.55/index.html>.

#### org.apache

Expand Down Expand Up @@ -133,7 +133,7 @@ This package includes supporting classes and interfaces from Mongo Java driver

This package includes supporting classes and interfaces from the Inductive
Automation's `org.json` package, see documentation here:
<https://sdk.inductiveautomation.com/javadoc/ignition81/8.1.54/org/json/package-summary.html>
<https://sdk.inductiveautomation.com/javadoc/ignition81/8.1.55/org/json/package-summary.html>

#### org.python

Expand Down
4 changes: 2 additions & 2 deletions src/system/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Package information."""

__version__ = "8.1.52"
__build__ = "2026011309"
__version__ = "8.1.55"
__build__ = "2026091508"
Comment on lines +3 to +4

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

issue (broader_impact): The runtime version is set to 8.1.55, but the distributable package metadata in setup.cfg and stubs/pyproject.toml remains 8.1.54, so published packages continue to advertise the old release version. Commitizen configuration also remains at 8.1.54, causing subsequent release/version automation to operate from stale metadata.

Triggers: When either package is built or the next release is prepared.

Suggested fix: Update setup.cfg, stubs/pyproject.toml, and .cz.toml to 8.1.55, or use the configured version-bump workflow to update all version sources together.