Skip to content

Commit eacf183

Browse files
v5.37.0
1 parent a3e07d9 commit eacf183

File tree

6 files changed

+13
-5
lines changed

6 files changed

+13
-5
lines changed

.known_good_references

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/openhab-jruby/5.36
1+
/openhab-jruby/5.37
22
/openhab-jruby/main
33
https://bundler.io/
44
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# JRuby openHAB Scripting Change Log
22

3+
## [v5.37.0](https://github.com/openhab/openhab-jruby/tree/v5.37.0) (2025-03-25)
4+
5+
### Features
6+
7+
- Persistence: support riemann_sum methods by [@jimtng](https://github.com/jimtng) in [#362](https://github.com/openhab/openhab-jruby/pull/362)
8+
9+
**Full Changelog**: [v5.36.2...v5.37.0](https://github.com/openhab/openhab-jruby/compare/v5.36.2...v5.37.0)
10+
311
## [v5.36.2](https://github.com/openhab/openhab-jruby/tree/v5.36.2) (2025-03-18)
412

513
### Bug Fixes

Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ GIT
99
PATH
1010
remote: .
1111
specs:
12-
openhab-scripting (5.36.2)
12+
openhab-scripting (5.37.0)
1313
bundler (~> 2.2)
1414
marcel (~> 1.0)
1515
method_source (~> 1.0)

lib/openhab/dsl/version.rb

+1-1
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.36.2"
7+
VERSION = "5.37.0"
88
end
99
end

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

+1-1
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.36/")) {
214+
if (document.location.pathname.startsWith("/openhab-jruby/5.37/")) {
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

+1-1
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.36" class="version-button stable">Stable <small>(5.36)</small></a></li>
3+
<li><a href="/openhab-jruby/5.37" class="version-button stable">Stable <small>(5.37)</small></a></li>
44
<li><a href="/openhab-jruby/main" class="version-button main">Latest <small>(main)</small></a></li>
55
</ul>
66
<% archived_versions = %w[] %>

0 commit comments

Comments
 (0)