File tree 7 files changed +19
-6
lines changed
7 files changed +19
-6
lines changed Original file line number Diff line number Diff line change 1
- /openhab-jruby/5.2
1
+ /openhab-jruby/5.3
2
2
/openhab-jruby/main
3
3
https://bundler.io/
4
4
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html
Original file line number Diff line number Diff line change 1
1
# JRuby openHAB Scripting Change Log
2
2
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
+
3
16
## [ v5.2.0] ( https://github.com/openhab/openhab-jruby/tree/v5.2.0 ) (2023-05-02)
4
17
5
18
[ Full Changelog] ( https://github.com/openhab/openhab-jruby/compare/v5.1.1...v5.2.0 )
Original file line number Diff line number Diff line change 9
9
PATH
10
10
remote: .
11
11
specs:
12
- openhab-scripting (5.2 .0 )
12
+ openhab-scripting (5.3 .0 )
13
13
bundler (~> 2.2 )
14
14
marcel (~> 1.0 )
15
15
method_source (~> 1.0 )
Original file line number Diff line number Diff line change 1
1
<!-- 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` -->
3
3
4
4
# JRuby Scripting <!-- omit from toc -->
5
5
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ module OpenHAB
4
4
module DSL
5
5
# Version of openHAB helper libraries
6
6
# @return [String]
7
- VERSION = "5.2 .0"
7
+ VERSION = "5.3 .0"
8
8
end
9
9
end
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ function enableHovers() {
211
211
}
212
212
213
213
function selectVersion ( ) {
214
- if ( document . location . pathname . startsWith ( "/openhab-jruby/5.2 /" ) ) {
214
+ if ( document . location . pathname . startsWith ( "/openhab-jruby/5.3 /" ) ) {
215
215
$ ( ".version-button.stable" ) . toggleClass ( "current" ) ;
216
216
} else if ( document . location . pathname . startsWith ( "/docs/" ) ||
217
217
document . location . pathname . startsWith ( "/openhab-jruby/main/" ) ||
Original file line number Diff line number Diff line change 1
1
< div class ="page-versions ">
2
2
< 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 >
4
4
< li > < a href ="/openhab-jruby/main " class ="version-button main "> Latest < small > (main)</ small > </ a > </ li >
5
5
</ ul >
6
6
<% archived_versions = %w[ ] %>
You can’t perform that action at this time.
0 commit comments