Skip to content

Commit fdbc33b

Browse files
v5.42.0
1 parent 77d5a57 commit fdbc33b

7 files changed

Lines changed: 10 additions & 5 deletions

File tree

.known_good_references

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/openhab-jruby/5.41
1+
/openhab-jruby/5.42
22
/openhab-jruby/main
33
https://bundler.io/
44
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# JRuby openHAB Scripting Change Log
22

3+
## [v5.42.0](https://github.com/openhab/openhab-jruby/tree/v5.42.0) (2025-09-23)
4+
5+
**Full Changelog**: [v5.41.0...v5.42.0](https://github.com/openhab/openhab-jruby/compare/v5.41.0...v5.42.0)
6+
37
## [v5.41.0](https://github.com/openhab/openhab-jruby/tree/v5.41.0) (2025-09-22)
48

59
### Features

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ GIT
88
PATH
99
remote: .
1010
specs:
11-
openhab-scripting (5.41.0)
11+
openhab-scripting (5.42.0)
1212
bundler (~> 2.2)
1313
marcel (~> 1.0)
1414
method_source (~> 1.0)

docs/js/versions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ function populateArchivedVersions() {
4343
"5.38",
4444
"5.39",
4545
"5.40",
46+
"5.41",
4647
]; // ARCHIVED_VERSIONS_MARKER
4748
const versionDropdown = $("#version-dropdown");
4849
archivedVersions.forEach((version) => {

lib/openhab/dsl/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ module OpenHAB
44
module DSL
55
# Version of openHAB helper libraries
66
# @return [String]
7-
VERSION = "5.41.0"
7+
VERSION = "5.42.0"
88
end
99
end

templates/default/fulldoc/html/js/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ function enableHovers() {
211211
}
212212

213213
function selectVersion() {
214-
if (document.location.pathname.startsWith("/openhab-jruby/5.41/")) {
214+
if (document.location.pathname.startsWith("/openhab-jruby/5.42/")) {
215215
$(".version-button.stable").toggleClass("current");
216216
} else if (document.location.pathname.startsWith("/docs/") ||
217217
document.location.pathname.startsWith("/openhab-jruby/main/") ||

templates/default/layout/html/versions.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="page-versions">
22
<ul class="version-switcher">
3-
<li><a href="/openhab-jruby/5.41" class="version-button stable" onclick="gotoVersion(event)">Stable <small>(5.41)</small></a></li>
3+
<li><a href="/openhab-jruby/5.42" class="version-button stable" onclick="gotoVersion(event)">Stable <small>(5.42)</small></a></li>
44
<li><a href="/openhab-jruby/main" class="version-button main" onclick="gotoVersion(event)">Latest <small>(main)</small></a></li>
55
</ul>
66
<div class="archived-versions">

0 commit comments

Comments
 (0)