diff --git a/.known_good_references b/.known_good_references index bd162a611..b1bae2564 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.27 +/openhab-jruby/5.28 /openhab-jruby/main https://bundler.io/ https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html diff --git a/CHANGELOG.md b/CHANGELOG.md index e945cfd02..62c87263c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # JRuby openHAB Scripting Change Log +## [v5.28.0](https://github.com/openhab/openhab-jruby/tree/v5.28.0) (2024-09-15) + +### Features + +- Allow literal states for sitemap visibility rules by [@ccutrer](https://github.com/ccutrer) in [#335](https://github.com/openhab/openhab-jruby/pull/335) +- Move #items and #things to EntityLookup by [@ccutrer](https://github.com/ccutrer) in [#336](https://github.com/openhab/openhab-jruby/pull/336) + +**Full Changelog**: [v5.27.2...v5.28.0](https://github.com/openhab/openhab-jruby/compare/v5.27.2...v5.28.0) + ## [v5.27.2](https://github.com/openhab/openhab-jruby/tree/v5.27.2) (2024-09-11) **Full Changelog**: [v5.27.1...v5.27.2](https://github.com/openhab/openhab-jruby/compare/v5.27.1...v5.27.2) diff --git a/Gemfile.lock b/Gemfile.lock index 7bf3c5f9c..5d08ffb5e 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.27.2) + openhab-scripting (5.28.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/Gemfile.ruby-2.6.lock b/Gemfile.ruby-2.6.lock index b64214220..1a6904e78 100644 --- a/Gemfile.ruby-2.6.lock +++ b/Gemfile.ruby-2.6.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.27.2) + openhab-scripting (5.28.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/lib/openhab/dsl/version.rb b/lib/openhab/dsl/version.rb index ccf50f981..4a84d7293 100644 --- a/lib/openhab/dsl/version.rb +++ b/lib/openhab/dsl/version.rb @@ -4,6 +4,6 @@ module OpenHAB module DSL # Version of openHAB helper libraries # @return [String] - VERSION = "5.27.2" + VERSION = "5.28.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index a31247afc..8433cafb1 100644 --- a/templates/default/fulldoc/html/js/app.js +++ b/templates/default/fulldoc/html/js/app.js @@ -211,7 +211,7 @@ function enableHovers() { } function selectVersion() { - if (document.location.pathname.startsWith("/openhab-jruby/5.27/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.28/")) { $(".version-button.stable").toggleClass("current"); } else if (document.location.pathname.startsWith("/docs/") || document.location.pathname.startsWith("/openhab-jruby/main/") || diff --git a/templates/default/layout/html/versions.erb b/templates/default/layout/html/versions.erb index 2a5236b39..ad951bcea 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@
<% archived_versions = %w[] %>