Skip to content

Commit 02f44e5

Browse files
v5.3.0
1 parent f9eb9b0 commit 02f44e5

File tree

7 files changed

+19
-6
lines changed

7 files changed

+19
-6
lines changed

.known_good_references

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

CHANGELOG.md

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

3+
## [v5.3.0](https://github.com/openhab/openhab-jruby/tree/v5.3.0) (2023-05-31)
4+
5+
[Full Changelog](https://github.com/openhab/openhab-jruby/compare/v5.2.0...v5.3.0)
6+
7+
### Features
8+
9+
- Add unit argument to items builder [\#73](https://github.com/openhab/openhab-jruby/pull/73) ([ccutrer](https://github.com/ccutrer))
10+
11+
### Bug Fixes
12+
13+
- DSL methods override user's method on the top level [\#4](https://github.com/openhab/openhab-jruby/issues/4)
14+
- Workaround unusual inheritance chain of `main` [\#74](https://github.com/openhab/openhab-jruby/pull/74) ([ccutrer](https://github.com/ccutrer))
15+
316
## [v5.2.0](https://github.com/openhab/openhab-jruby/tree/v5.2.0) (2023-05-02)
417

518
[Full Changelog](https://github.com/openhab/openhab-jruby/compare/v5.1.1...v5.2.0)

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.2.0)
12+
openhab-scripting (5.3.0)
1313
bundler (~> 2.2)
1414
marcel (~> 1.0)
1515
method_source (~> 1.0)

USAGE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!-- This file is auto-generated by YARD from https://github.com/openhab/openhab-jruby/blob/main/USAGE.md; please do not edit directly -->
2-
<!-- To regenerate, run `bin/yard display -f markdown -o https://openhab.github.io/openhab-jruby/5.2 file:USAGE.md` -->
2+
<!-- To regenerate, run `bin/yard display -f markdown -o https://openhab.github.io/openhab-jruby/5.3 file:USAGE.md` -->
33

44
# JRuby Scripting <!-- omit from toc -->
55

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.2.0"
7+
VERSION = "5.3.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.2/")) {
214+
if (document.location.pathname.startsWith("/openhab-jruby/5.3/")) {
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.2" class="version-button stable">Stable <small>(5.2)</small></a></li>
3+
<li><a href="/openhab-jruby/5.3" class="version-button stable">Stable <small>(5.3)</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)